I have done some CSS3 transitions on an element, using the "active" selector. What I need now is to program the "click and hold for 4-5 sec" behavior on that element, when the page loads, without having the user to actually click on it.
Is there a way to simulate the "click and hold" for a specific amount of time, either with jQuery or javascript?
Something like
$('div').click(5000);
which obviously does not work.
Thanks!