i m binding keyup function in jquery to body which works in every browser except firefox
the code: -
$('body').bind('keyup', function(e) {
//alert ( e.which );
alert('testing');
});
how do i do it for firefox. it does not responds at all
thanks