user3405179
user3405179

Reputation: 184

how to prevent shift + tab on focus out?

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

Answers (1)

Anoop LL
Anoop LL

Reputation: 1575

Hope this works

$(".txtPaymentMessage").keydown(function(e)
        {
            if(e.which  == 9 && !e.shiftKey)
            {
                alert("You Press Tab Only");
            }
});

Upvotes: 6

Related Questions