/ Published in: jQuery
With setTimeout it actually works.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function click() { setTimeout( function() { $( "#id_of_the_container" ).find( ".class_of_the_button" ).click(); }, 100 ); return true; }