Skip to content

Instantly share code, notes, and snippets.

@sdvg
Created April 12, 2012 08:39
Show Gist options
  • Save sdvg/2365645 to your computer and use it in GitHub Desktop.
Save sdvg/2365645 to your computer and use it in GitHub Desktop.
twitter test-mentions generator
var $in = $('.twitter-anywhere-tweet-box-editor');
var $btn = $('.tweet-button');
var inter = setInterval(function() {
$in.focus();
$in.val(new Date().getTime()+Math.floor(Math.random()*22)+' @MYTWITTERACCOUNT .... mentionTEST');
$btn.removeClass('disabled');
$btn.click();
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment