Guest User

Untitled

a guest
Sep 12th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. jQuery focus() on textbox on button click ipad
  2. function onclickclearbtn(){
  3. $('#txtbox').val('');
  4. $('#txtbox').focus();
  5. }
  6.  
  7. function onclickclearbtn(){
  8. $('#txtbox').val('', function() {;
  9. $( this ).focus();
  10. });
  11. }
Add Comment
Please, Sign In to add comment