Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $('#id').find('select').live('keypress', function (event) {
  2. if (event.which === 13) {
  3. event.preventDefault();
  4. $(this).closest('.ui-dialog').find('.ui-button:first').click();
  5. }
  6. });
  7.  
  8. $( "body" ).on( "keypress", "#id select", function(event) {
  9. ...
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement