Skip to content

Instantly share code, notes, and snippets.

@orhanveli
Created February 6, 2012 20:39
Show Gist options
  • Save orhanveli/1754685 to your computer and use it in GitHub Desktop.
Save orhanveli/1754685 to your computer and use it in GitHub Desktop.
flood
var i = 0;
function runme() {
$("textarea[name='body']").val("test"+i);
$(".nq-submit input").click();
if(i < 10){
setTimeout("runme()", 1000);
}
}
runme();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment