I want to download a file which is created from DOM element. So a user clicks a button on web page and it invokes a javascript method which may grab the contents of DOM element and prompt user for download.
I am able to grab contents of the DOM element inside a Javascript Var. But not sure how to proceed further.
For grabbing the DOM element i am using:
var elem = document.getElementById("userDownload");