S
|
sickacid author 3/27/2012 |
Hi I want to use ENTER and ESC for exit or save a page in inline redord add. I've found this code on forum, and I've put it in JS OnLoad event but it dont't works. I'm on firefox 11.0 $(document).keyup(function(e) { if (e.keyCode == 13) { $("input[id^='saveButton']").trigger('click'); } else if (e.keyCode == 27) { $("input[id^='backButton']").trigger('click'); } });
|
S
|
sickacid author 3/28/2012 |
I'm using this code and works... Is correct use this kind of id^ ? $(document).keydown(function(event) {if(event.keyCode == 78) $("a[id^='inlineAdd1']").click(); if(event.keyCode == 13) $("a[id^='saveall_edited1']").click(); } //event.preventDefault(); ); |
S
|
sickacid author 3/28/2012 |
Hi, |