/ Published in: jQuery
Expand |
Embed | Plain Text
$('.input').keypress(function(e) { if(e.which == 13) { jQuery(this).blur(); jQuery('#submit').focus().click(); } });
You need to login to post a comment.
$('.input').keypress(function(e) { if(e.which == 13) { jQuery(this).blur(); jQuery('#submit').focus().click(); } });
You need to login to post a comment.