/ Published in: jQuery
Trigger a .Click when you hover over an $(\'#element\')
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('#other').click(function() { $('#target').click(); }); OR $('.something').hover(function() { $('#element').trigger('click') });
URL: http://api.jquery.com/click/