/ Published in: jQuery
With setTimeout it actually works.
Expand |
Embed | Plain Text
function click() { setTimeout( function() { $( "#id_of_the_container" ).find( ".class_of_the_button" ).click(); }, 100 ); return true; }
You need to login to post a comment.
