Hi all
I have this little script that I found a while ago,
and im now wondering if there is any Client Side way of making the text add to a text file rather than overwriting it?Code:<script> function save() { str = document.forms[4].textarea.value; mydoc = window.open(); mydoc.document.write(str); mydoc.document.execCommand("saveAs",true,"CallLog.txt"); mydoc.document.close(); } </script>
Thanks
Kirt



Reply With Quote

Bookmarks