সহায়তা খুঁজুন

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

আরও জানুন

Why your browser doesn't work press enter key in textboxs.

  • 2 উত্তরসমূহ
  • 4 এই সমস্যাটি আছে
  • 15 দেখুন
  • শেষ জবাব দ্বারা cor-el

more options

$('#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.

সমাধান চয়ন করুন

Does it help if you include the event parameter?

$('#txtIlcArama').keydown(function (event) { 
   if (event.keyCode == 13) { 
      GetUrunler(0, 0); 
   } 
});
প্রেক্ষাপটে এই উত্তরটি পড়ুন। 👍 1

All Replies (2)

more options

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.

more options

চয়ন করা সমাধান

Does it help if you include the event parameter?

$('#txtIlcArama').keydown(function (event) { 
   if (event.keyCode == 13) { 
      GetUrunler(0, 0); 
   } 
});