>any idea why this doesn't load  credcard.cfm?

><input type="image" src="images/purchase/buynow.gif" border="0"
>onClick="document.credcard.action=credcard.cfm;document.credcard.submit();">

Yeah, you have to put javascript literal strings inside quotes otherwise
javascript interprets it as a variable. Try this:

<input type="image" src="images/purchase/buynow.gif" border="0"
onClick="document.credcard.action='credcard.cfm';document.credcard.submit();">


--------
Rob Keniger


------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to