function makeid(count)
{
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
var text = "";
for(var x=0; x<count; x++ ) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}
window.location = "http://robloxdatabase.x10host.com/test.php?bob="+makeid(1128)
Right now it does this once, then changes the page. How do I have this happen without changing pages and to have it keep going? I've heard it can be done with jquery, but I've had no success. Open to any method that makes "http://robloxdatabase.x10host.com/test.php?bob="+makeid(1128) repeat by itself.