[wd_asp elements=’search’ ratio=’100%’ id=1]

Detect enter key pressed and prevent it

8th July 2013

Jquery - Strings

jquery icon

This detects it

$('#txt').keydown(function (e){
if(e.keyCode == 13){
alert('you pressed enter ^_^');
}
})

and this prevents it