Wrox Programmer Forums
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 3rd, 2004, 01:31 PM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Well your function takes a parameter, varURL and you're not supplying it, that's why it's undefined.

--

Joe
 
Old March 3rd, 2004, 01:56 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 347
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Adam H-W
Default

OK, how would I define varURL?

(as you might have guessed, I don't know my javascript too well!)

Cheers

Adam
 
Old March 3rd, 2004, 05:04 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 1,285
Thanks: 0
Thanked 2 Times in 2 Posts
Default

<script language="javascript" type="text/javascript">
function ConfirmBasePrice(varURL)
{
    if (confirm("Make sure you haven't changed\nthe base level from £1.00!"))
    {
        window.open(varURL, "_top");
        return true;
    }
    return false;
}
</script>
<form name="form1" method="post" onSubmit="return ConfirmBasePrice('your_page.php');" action="process_update.asp?id=<%=rsPacking("PPid") %>">


----------
---Snib---
----------
 
Old March 4th, 2004, 05:11 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 347
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Adam H-W
Default

Cool, thanks





Similar Threads
Thread Thread Starter Forum Replies Last Post
problem in alert box amol_0008 Javascript 1 June 14th, 2007 06:17 AM
personalized Alert Box kanoorani Javascript How-To 1 September 5th, 2005 08:58 AM
Javascript alert error Ed7777 Javascript How-To 5 June 25th, 2004 02:23 PM
Confirm alert box - need help, Please! larry HTML Code Clinic 1 January 25th, 2004 02:07 AM
Security Alert Message box pkgal79 HTML Code Clinic 5 June 12th, 2003 09:20 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.