Udoro

Mobile search focus pulls keyboard

Feb 9th, 2021 (edited)
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. jQuery(document).ready(function($) {
  2.  
  3. function focus() {
  4. jQuery('#id-for-searchbox').focus();
  5. }
  6. jQuery(focus);
  7. jQuery(function() {
  8. jQuery(document.body).load(focus);
  9. jQuery('#id-for-trigger-button').click(focus);
  10. jQuery('#id-for-trigger-button-timeout').click(function() {
  11. setTimeout(focus);
  12. });
  13. });
  14.  
  15. });
  16. /*Replace #id-for-searchbox and #id-for-trigger-button with yours.*/
Add Comment
Please, Sign In to add comment