Created
February 18, 2018 17:18
-
-
Save mePy2/635992b19dcf05c7e48735cdf397c690 to your computer and use it in GitHub Desktop.
Download the inner content of the <div class="default">, if present.
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
<script> | |
function downloadHTML() { | |
var divDef = document.querySelector("div.default").innerHTML; | |
var title = "<data:post.title/>" + ".html"; | |
if (divDef) { | |
var pom = document.createElement('a'); | |
pom.setAttribute('href', 'data:text/html;charset=utf-8,' + encodeURIComponent(divDef)); | |
pom.setAttribute('download', title); | |
if (document.createEvent) { | |
var event = document.createEvent('MouseEvents'); | |
event.initEvent('click', true, true); | |
pom.dispatchEvent(event); | |
} else { | |
pom.click(); | |
} | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment