This is my current, i want to change .live but .on is not working..
$('#SearchString').live('keydown',function(e) {
if (e.which == 13) {
if (!$("#SearchString").val()) {
alert("Inget postnummer eller ort angiven!");
return false;
}
}
});
$('#SearchString').on('keydown',function(e) {
if (e.which == 13) {
if (!$("#SearchString").val()) {
alert("Inget postnummer eller ort angiven!");
return false;
}
}
});
This is the ON version