הכוונה לכל מסכי הלוגין והסיסמא שיש כפתור login בסופו.
בברכה,עידן
$(document).ready(function() { $("#inputText").keypress(function(e) { if (e.which == 13) { $(this).blur(); $('#button').focus().click(); } });});
$("#form_id").submit();