I am just curious; does any of you have any good javascriptresources for setting defaultbutton for all elements inside a div? I have a lot of divs that executes various javascriptfunctions and I would like all of them to have their buttons script executed when enter is pressed.

Thanks in advance!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The way I would do it is give the elements that you want to be fired a class, for example 'acceptEnter'. Then create a handler for the containing DIVs which looks for that class on keypress. Hope this helps :)

$('div').keypress( function(e) {
   if(e.keyCode == '13') {
     $(this).find('.acceptEnter').click();
   }
});
link|improve this answer
This was exactly what I was looking for :) Thanks! – femseks Sep 24 '10 at 12:47
feedback

Why not have a single javascript function that calls all the other scripts, and make all the buttons call this one javascript function?

link|improve this answer
Not sure how that would help.. I then would need to know which method to call in the "master" javascript that handles everything.. – femseks Sep 24 '10 at 12:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.