Is there any way to do it correctly? I try this code:

function ctrlEnter(event, form) {
  if((event.ctrlKey) && ((event.keyCode == 0xA)||(event.keyCode == 0xD))) {
   $('#ajax-comments-submit').click()
  }
}

But it doesn't control "press-n-hold" (sends too many requests) and Firefox lost focus on sending.

Comments

rjbrown99’s picture

Status: Active » Closed (cannot reproduce)

This issue is more than a year old, so please try with the latest -dev and re-open if this is still an issue.