localhost Posted July 14, 2006 Share Posted July 14, 2006 I wanna make a pop up window on this form, i want it to contain a php file. can someone tell me how to do this?here is a snippet of my code:[code]<br> Security Number: <input type="text" name="ccsecure"> <span class="style4">What is this?</span><Br>Card Type: <select name="cctype"><option>Visa</option><option>Mastercard</option><option>Discover</option><option>American Express</option></select>[/code]I want the "What is this?" to link to open a small javascript window that contains sc.php.Thanks! Quote Link to comment Share on other sites More sharing options...
nogray Posted July 14, 2006 Share Posted July 14, 2006 you can do something like this[code]<a href="#" onclick="window.open('sc.php'); return false;">What is this?</a>[/code] Quote Link to comment Share on other sites More sharing options...
crazysaint Posted July 21, 2006 Share Posted July 21, 2006 i was having the same dilemma but the code above has helpred,i would now like to know the code to generate a pop up window with the address bar inactive. Quote Link to comment Share on other sites More sharing options...
nogray Posted July 21, 2006 Share Posted July 21, 2006 check this page for full details on opening a windowhttp://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.