Last active
August 29, 2015 14:15
-
-
Save pjstorm/d05bfdcf9dacc39fe3dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a=''; | |
for(var i=0;i<50000;i++){a+='=';} | |
var wait = setTimeout(function(){ | |
alert('Logged in fb') | |
},15000) | |
var cb=function(){ | |
clearTimeout(wait); | |
alert('Not logged in fb'); | |
} | |
a='https://www.facebook.com/messages/new?'+a; | |
console.log(a.length); | |
document.write('<iframe onload="cb()" src="'+a+'"></iframe>') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Neat.