vote up 0 vote down star

I'm trying to use jQuery to intercept control-A keypresses on my web page, like so:

$(document).keypress(function (event) {
    if (event.ctrlKey && (event.which == 65 || event.which == 97)) {
        event.preventDefault();
        // ...
    }
});

This works on Firefox, but on IE7, my event handler doesn't get called, and all of the text on the page gets selected instead (as happens on Firefox without the event handler).

Is there any way I can intercept control-A's on IE?

flag
I think the problem is your parameter name. Just call it e instead of the pre-defined event – Josh Stodola Oct 30 at 21:09

2 Answers

vote up 1 vote down check

This works under FF 3.5 and IE7 for me:

	$(function() {
		var isCtrl = false; 

		$(document).keyup(function (e) { 
			if(e.keyCode == 17)
				isCtrl = false;
		}).keydown(function (e) { 
			if(e.keyCode == 17)
				isCtrl = true;

			if(e.keyCode == 65 && isCtrl == true) {
				alert('Intercepted CTRL+A');
				e.preventDefault();
			}
		}); 
	});
link|flag
Super, thanks! It even works in IE6. – Sean Oct 30 at 21:36
vote up 0 vote down

If you do a return false in the event handler then it will cancel the browsers behavior. Depending on the browser it can behave differently (for instance keypress will still fire on firefox after a keydown has canceled it, while IE will stop it).

link|flag

Your Answer

Get an OpenID
or

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