Guest User

Untitled

a guest
Jul 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1.  
  2. jQuery('#edit-search-block-form-1').focus(function(){
  3.  
  4. if($(this).val() == "search") $(this).val('').css('color', '#333');
  5.  
  6. });
  7.  
  8. jQuery('#edit-search-block-form-1').blur(function(){
  9.  
  10. if($(this).val() == "") $(this).val('search').css('color', '#AAA');
  11.  
  12. });
Add Comment
Please, Sign In to add comment