Why Javascript Save as not work in Firefox?
- by Mahran Elneel
i using this script but not work in Firefox what can i do to work?but work good in IE
Thank You
function doSaveAs(){
if (document.execCommand){
document.execCommand("SaveAs")
}
else {
alert("Save-feature available only in Internet Exlorer 5.x.")
}
}