J
James Kirk
The script below allows me to link to a file and as the user clicks to
download, the 'File Download' windows appears as normal, and the user can
download...
The original page is then redirected to a new page..
This works, but it also opens a blank page..
How can this be chaged to stop the blank page from opening... ?
<script type="text/javascript">
function functionname(thefile){
document.location.href="somepage.html"
newwindow = window.open(thefile)
newwindow.close
}
</script>
<a href="#" onclick="functionname('filename.zip')">wqe</a>
Thanks
download, the 'File Download' windows appears as normal, and the user can
download...
The original page is then redirected to a new page..
This works, but it also opens a blank page..
How can this be chaged to stop the blank page from opening... ?
<script type="text/javascript">
function functionname(thefile){
document.location.href="somepage.html"
newwindow = window.open(thefile)
newwindow.close
}
</script>
<a href="#" onclick="functionname('filename.zip')">wqe</a>
Thanks