I'm not sure what you mean - can you explain?So, i am curious to learn how can i triggered click without the traffic user clicking it
whenever a user visits the site ?
I know this is a bit old.. but did I understand correctly that this generates clicks without the visitor actually clicking on something?I assume you're talking about a site you own? You can do this using JavaScript.
Code:function clickSomething() { var something = document.getElementById("something"); something.click(); } <body onload="clickSomething()">
I know this is a bit old.. but did I understand correctly that this generates clicks without the visitor actually clicking on something?
so I'd just pop this into "console" and I'm good to go?Yes, in JavaScript, you can use that to send a click event to an element. It will behave as though the user clicked his mouse on it. Of course, you won't have all the natural mouse movement events that are normally accompanying it.
so I'd just pop this into "console" and I'm good to go?
and is this traceable by ad networks?
Sorry for disturbing, where can one out this code to achieve this click on loadI assume you're talking about a site you own? You can do this using JavaScript.
Code:function clickSomething() { var something = document.getElementById("something"); something.click(); } <body onload="clickSomething()">
Sorry for disturbing, where can one out this code to achieve this click on load