skend0 Posted September 27, 2017 Share Posted September 27, 2017 Hi there, i need help on how to make auto clicker on load: <div id="frameHolder"></div> <script> $(function () { $.getJSON({ url: "geturl.php", success: function (urls) { for (var counter in urls) { var url = urls[counter]; url = url.replace(/\\/g, ""); $("#frameHolder").append($("<iframe>").attr({ "sandbox": "", "width": "100%", "height": "100%", "src": url })); } } }); }); </script> Can some one help me how can i make on load of page the script to make auto click inside of the iframe link that will be loaded? Needs to make random click inside of #frameHolder Quote Link to comment https://forums.phpfreaks.com/topic/305131-js-auto-clicker/ Share on other sites More sharing options...
Sepodati Posted September 28, 2017 Share Posted September 28, 2017 Why would I want the browser clicking something on my behalf? Sounds sketchy. Quote Link to comment https://forums.phpfreaks.com/topic/305131-js-auto-clicker/#findComment-1552007 Share on other sites More sharing options...
skend0 Posted September 29, 2017 Author Share Posted September 29, 2017 I need this to bypass counter for an exchange site for traffic Quote Link to comment https://forums.phpfreaks.com/topic/305131-js-auto-clicker/#findComment-1552101 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.