Skip to content

Instantly share code, notes, and snippets.

@luztak
Created January 30, 2013 06:18
Show Gist options
  • Save luztak/4671152 to your computer and use it in GitHub Desktop.
Save luztak/4671152 to your computer and use it in GitHub Desktop.
A simple placeholder simulator for IE.
var _p = function(i, t){
// i is the input item, t is the text to set default.
i.onblur = function(){
if( i.value === "" ){
i.value = text);
}
};
i.onfocus = function(){
if( i.value === text ){
i.value = "";
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment