|
Articles > jQuery > How to capture Click event with Shift, Control and Alt Keys in jQuery |
|
How to capture Click event with Shift, Control and Alt Keys in jQuery
Author: Venkata Sudhakar
The below example shows how to capture Click event with Shift, Control and Alt Keys in jQuery.
01 | $(selector).click( function (eventObj) { |
02 | if (eventObj.shiftKey) { |
05 | if (eventObj.ctrlKey) { |
|
|