I have a web page that just goes directly to e-junkie. A click on my custom purchase button calls this page instead of exiting my site directly. This enables Google to accurately measure how long a user spends on the page before clicking the purchase button. This overcomes the problem that, without this, Google can't measure the time and so gives the page a time of zero.
It's a very simple page, short and sweet. It just contains a link to e-junkie, with the standard two parameters:
<html> <head>
<meta http-equiv="refresh" content="0;url=https://www.e-junkie.com/ecom/gb.php?c=cart&i=881&cl=46037&ejc=2" />
<title>Please wait...</title>
</head> <body> </body> </html>
But for a two product purchase, I need to send more parameters...
So, copying the ahref from Shivani's very helpful post at http://www.e-junkie.com/bb/topic/2428, it seems that the ahref I need is:
<a href="javascript:EJEJC_multiAdd(Array('https://www.e-junkie.com/ecom/gb.php?c=cart&i=881&cl=46037&ejc =2','https://www.e-junkie.com/ecom/gb.php?c=cart&i=882&cl=46037&ejc =2'));">Add ALL</a>
Now my expertise in web-sites, html, and javascript is actually very, very limited, as is perhaps obvious from this query. Even the html above sorely tests the limit of my knowledge!
So how do I pass these extra parameters in my html call to e-junkie please? What do I need to do to my web-page to convert this more complex a-href into correct html?
All help and suggestions very much appreciated. Many, many thanks in advance.
Cris