Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hello,
I'm unable to decide on how to proceed with this, I would like to have a pop up dialog box displayed on the screen when an user clicks on submit which would say continue to save information or cancel option.My submit button is already doing another function of displaying the entries made in the form as a pdf. Is it possible to make the same button display the dialog box say after 10 seconds and then when i click save, write the information to the database?

P.S.: I think this would be a quite a simple question to answer for you guys, but I'm a bit new to web development.

Your help is much appreciated.
Posted
Comments
Mohibur Rashid 24-Oct-12 6:33am    
why do you want to create a pdf file to confirm input? what would be the behaviour if user turn off javascript? by the way, if you open the pdf in new window then in your next statement you can write the code to display your popup window. but if you plan to open in the same window you better deal with frame or iframe
Member 9196002 24-Oct-12 8:18am    
the pdf is for printing the document.It is working perfectly fine. I wrote the code to open the popup in the next statement with a timeout..but only the window of the pdf opens
Member 9196002 24-Oct-12 8:19am    
well..this is what my code is doing..but it doesn't proceed further.
echo ' <script language="JavaScript" type="text/javascript">
//<![CDATA[
window.open(\'./index_pdf.php?'.$query_string.'\',\'test_ev\'location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no\');
//
</script>';
echo'<script language = "JavaScript" type="text/javascript">
//<![CDATA[
window.open('./save.php?','location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=no');
//
</script>';

Not sure if I understand correctly, but to trigger popup after a delay you can use window.setTimeout

http://www.w3schools.com/jsref/met_win_settimeout.asp[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900