JS auto clicker

ساخت وبلاگ
Hi there, i need help on how to make auto clicker on load:
Code:

    <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
CodingForums...
ما را در سایت CodingForums دنبال می کنید

برچسب : نویسنده : codingforums بازدید : 276 تاريخ : جمعه 7 مهر 1396 ساعت: 10:54