Advertisement
Guest User

Untitled

a guest
Aug 18th, 2020
563
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $('body').on('keydown','#search input[type=text]',function(){
  2. if($(this).attr('value') == $placeholder){
  3. $(this).attr('value', '');
  4. }
  5. });
  6.  
  7. $('body').on('keyup','#search input[type=text]',function(){
  8. if($(this).attr('value') == ''){
  9. $(this).attr('value', $placeholder);
  10. $(this).setCursorPosition(0);
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement