I have this piece of code executed with greasemonkey. I don't know how to introduce a timeout for butt.click();. To be executed for exemple very 3 seconds. I've tried setTimeout(function(){butt.click();}, 3000); but doesn't work correctly

javascript:var lis = document.getElementsByTagName('li');

for(var n in lis) {

	var li = lis[n];
	try {
		var cl = li.getAttribute('class');
		if(cl == 'follow-action') {
			var butt = li.getElementsByTagName('button')[0];
			butt.click();
		} 
	} catch(e) {} 
}

Sounds like you want setInterval instead of setTimeout...and you don't need to create a new function...setInterval("butt.click()",3000)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.