Current Scenario is, For a textbox need to verify if Shift+tab is pressed then Js function should return True.
Tried with
event.shiftKey && event.keyCode == 9
But no luck.
Issue is While pressing Shift+Tab, We do press Shift 1st then Tab in sequence. Thus while pressing Shift (keycode is 16), so this condition is failing. Please help me how to check both key press at a time?