riix
7/24/2012 - 4:32 AM

Keycatch Code with jQuery

Keycatch Code with jQuery

$('body').bind('keypress', function(event) {
	if( event.keyCode == 13 ){
		$('form').eq(0).submit();
	}
});