I found this in Google Analytics Help:
Quote:
Set up forms.
If you send information between domains using forms, you'll need to use the _linkByPost() method.
Asynchronous Code (default)
<form name="f" method="post" onsubmit="_gaq.push(['_linkByPost', this]);">
Note: This should also work with forms that use GET method. However, keep in mind that since both the form data and the Analytics tracking can create a long query string, using this method with GET forms might cause issues if your web server imposes a URL length restriction (such as 255 bytes).
|
Should I add the whole line <form name="f" method="post" onsubmit="_gaq.push(['_linkByPost', this]);"> into the ccbill form?