Created
October 3, 2012 20:59
-
-
Save faffyman/3829807 to your computer and use it in GitHub Desktop.
just for fun - testing the embed gist feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function clearMe(oObj,val) { | |
if(oObj.value==val) { | |
oObj.value=''; | |
} | |
} | |
function fillMe(oObj,val) { | |
if (oObj.value=='') { | |
oObj.value=val | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment