I want to call method on Press-"TAB"
but not on "Shift + Tab"
.
$(".txtPaymentMessage").keydown(function(e)
{
if(e.keyCode == 9)
{
alert("You Press Tab Only");
}
});
Hope this works
$(".txtPaymentMessage").keydown(function(e)
{
if(e.which == 9 && !e.shiftKey)
{
alert("You Press Tab Only");
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With