Just wondering if there is any way to trigger a Ctrl + CLICK (or just any key + CLICK) in jQuery. I am thinking of something like the following:
var e = jQuery.Event("keydown"); e.which = 17; $('a.'+id, this._parent).trigger(e).trigger('click');
or
var e = jQuery.Event("click"); e.ctrlKey = true; $('a.'+id, this._parent).trigger(e);
Thank you!
yes this will work for you:
var e = jQuery.Event("click"); e.ctrlKey = true; $('#id').trigger(e);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With