D
duncfair
I need to create code to deploy Google Analytics e-commerce.
The item data needs to be formatted like so:
pageTracker._addItem(
"3333", // OrderID
"929392939392 ", // SKU
"Widget ", // ProductName
"Fuschia ", // ColortName
"109.95", // Price
"1" // Quantity
);
I can't use a datagrid because I can't have any of the formatting in
there, but I need the 'pageTracker._addItem( '
and the closing ');' for each item on my receipt page.
How can I do this?
The item data needs to be formatted like so:
pageTracker._addItem(
"3333", // OrderID
"929392939392 ", // SKU
"Widget ", // ProductName
"Fuschia ", // ColortName
"109.95", // Price
"1" // Quantity
);
I can't use a datagrid because I can't have any of the formatting in
there, but I need the 'pageTracker._addItem( '
and the closing ');' for each item on my receipt page.
How can I do this?