Auto click script possible?

Silvester

Newbie
Joined
Dec 9, 2009
Messages
12
Reaction score
2
I was wondering if anyone could help me with this. You know how you can get autoclickers which are programs which will automatically click on a certain place in the screen, using x and y co-ordinates, is it possible to do anything like this using javascript or something similar?
 
You can try the Firefox plugin iMacros.. It does exactly that, and is easy to script.

But I say that assuming you want to click on some part of a webpage over and over.. Outside of that the program wont work for you.
 
it's possible even from javascript, the problem is that the code is visible, so you will have to make sure that not each visit will autoclick because you will be banned for sure.
 
it's possible even from javascript, the problem is that the code is visible, so you will have to make sure that not each visit will autoclick because you will be banned for sure.


HEY HIP HOP

It's possible using javascript?

That's what I'm looking for actually.

Can you, please, tell me how?
 
Greasemonkey or Chrome Extensions... pretty well invisible if you code it right.
 
with javascript you trigger click on elements
example with jquery:
Code:
/*his will trigger click event on div - doesn't work with ads etc if this is what you want to do*/

$('div').trigger('click');
 
Back
Top