2009年10月23日 星期五

[jquery]smartFocus

http://plugins.jquery.com/project/smartFocus

jQuery.fn.smartFocus = function(text) {
$(this).val(text).focus(function(){
if($(this).val() == text){
$(this).val('');
}
}).blur(function(){
if( $(this).val() == '' ){
$(this).val(text);
}
});
};

USAGE EXAMPLE:

var mail = '* E-mail';
$('#mail').smartFocus(mail);

【下列文章您可能也有興趣】

沒有留言: