Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('body').on('keydown','#search input[type=text]',function(){
- if($(this).attr('value') == $placeholder){
- $(this).attr('value', '');
- }
- });
- $('body').on('keyup','#search input[type=text]',function(){
- if($(this).attr('value') == ''){
- $(this).attr('value', $placeholder);
- $(this).setCursorPosition(0);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement