สอบถามเรื่อง โค้ด save html ครับ โค้ดที่ผมมี save ได้เฉพาะใน IE
Code (PHP)
<script type="text/javascript">
function doSaveAs()
{
if (document.execCommand) {
document.execCommand("SaveAs", false, "Test.html");
}
else {
alert('This command is available in Internet Explorer only.');
}
}
</script>
<button onclick="doSaveAs()">Save this document</button>