Why your browser doesn't work press enter key in textboxs.
$('#txtIlcArama').keydown(function () {
if (event.keyCode == 13) { GetUrunler(0, 0); }
});
event.keyCode working all browser but it isn't working at your browser.
$('#txtIlcArama').keydown(function () {
if (event.keyCode == 13) {
GetUrunler(0, 0);
}
});
event.keyCode working all browser but it isn't working at your browser.
Ausgewählte Lösung
Does it help if you include the event parameter?
$('#txtIlcArama').keydown(function (event) { if (event.keyCode == 13) { GetUrunler(0, 0); } });Diese Antwort im Kontext lesen 👍 1
Alle Antworten (2)
I am sorry to hear that the code is not working. Please first consider checking out stackoverflow.com for this question since it required developer knowledge.
Ausgewählte Lösung
Does it help if you include the event parameter?
$('#txtIlcArama').keydown(function (event) { if (event.keyCode == 13) { GetUrunler(0, 0); } });