Reputation: 184
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");
}
});
Upvotes: 7
Views: 1799
Reputation: 1575
Hope this works
$(".txtPaymentMessage").keydown(function(e)
{
if(e.which == 9 && !e.shiftKey)
{
alert("You Press Tab Only");
}
});
Upvotes: 6