//Original by POOPMAN_ (function() { var text = prompt("TYPE WHAT YOU WANT TO PASTE."); for (baa=0; baa < 1; baa ++) { text += text * 99999999999999999999999999999; } var width = $(".active-cursor").width(); var height = $(".active-cursor").height(); var start = $(".active-cursor").offset(); var current = { top: Math.round(start.top + height / 2), left: Math.round(start.left + width / 2) }; var i = 0; function next() { var c = text.charAt(i); if (c === "\n") { current.left = start.left; current.top += height; } else { $(document.elementFromPoint(current.left, current.top)).click(); w.typeChar(c); current.left += width; } i++; if (i < text.length) { setTimeout(next, 10); } } next() })();