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");
}
});