Thickbox Download Button
Thickbox Download Button
I'm trying to set up a simple inline thickbox window for agreeing to the terms of use for a download file. I found styling the box to hold the TOS content statement rather easy, but don't know how to set up a second button that closes the thickbox AND points the user at a zip file to begin download.
The coding snippit for the "Cancel" button that they click when they don't agree is below. I want to add a second button that begins the download process, and also closes the thickbox popup.
> <div id="hiddenModalContent" style="display:none">
> <p>Big-long terms of service statement for file you want to download.</p>
> <p style="text-align:center"><input type="submit" id="Close" value=" Cancel " onclick="tb_remove()" /></p>
> </div>
Since the downloading file is a zip file, I don't think that I have to get very fancy with the coding, because the browser should automatically show the OS Save/Open menu when you direct them to that link?
Any ideas on how I can do this? Is there a JQuery command that closes the current window, while opening a new file? Thanks.
Fagan