ControlC ControlC · Pastebin

Notepad

Views: 188Total Chars: 902
Created: 1/16/21 6:25:54PM ET
Self Destructs: Never
<script type="text/javascript" data-cfasync="false">
function download(){
var text = document.getElementById("my-textarea").value;
text = text.replace(/
/g, "
"); // To retain the Line breaks.
var blob = new Blob([text], { type: "text/plain"});
var anchor = document.createElement("a");
anchor.download = "percent.txt";
anchor.href = window.URL.createObjectURL(blob);
anchor.target ="_blank";
anchor.style.display = "none"; // just to be safe!
document.body.appendChild(anchor);
anchor.click();
document.body.removeChild(anchor);
}
</script>

<textarea id="my-textarea" style="vertical-align: top; position:relative; display: inline-block; width:15%; min-height:200px; background:none;">
Notes here...
</textarea>
<button type="button" onclick="download()">Save</button>
·Create new version