Hi all,
I am trying to modify my join page to track ccbill stats in google analytics (tracking Multiple domains in Google Analytics) using _link() and _linkByPost()
It looks like I have to modify the CCBILL form!
I.E. this ccbill form:
Quote:
<form action='https://bill.ccbill.com/jpost/signup.cgi' method=POST>
<div align="center"><b><font color="#000000" size="4" face="Verdana, Arial, Helvetica, sans-serif">CREDIT CARD</font></b>
<input type=hidden name=clientAccnum value='934401'>
<input type=hidden name=clientSubacc value='0002'>
<input type=hidden name=formName value='50cc'>
<input type=hidden name=language value='English' >
<input type=hidden name=allowedTypes value='0000001322:840,0000040762:840' >
<input type=hidden name=subscriptionTypeId value='0000001322:840' >
<br>
<!----------------Don't Modify button text------------------------------->
<input type="submit" name="submit" value="Instant Credit Card Access">
</div>
</form>
|
After a lot of research and a big headache

I found that if I want the ccbill form to allow Google Analytics to track Multiple Domains, It needs to be setup with the following code in the form:
Quote:
<form name="f" method="post" onsubmit="pageTracker._linkByPost(this);">
|
My question is: how should I add this line of code in the CCBILL form?
Should I changeonly the last line of the CCBILL form:
Quote:
<input type="submit" name="submit" value="Instant Credit Card Access">
|
by something like this?
Quote:
<input type="submit" name="submit" value="Instant Credit Card Access" onsubmit="pageTracker._linkByPost(this);">
|
Thanks for your insights !