LinkShare DRM linking code is unique from traditional links. Rather than contain a traditional HREF to a redirect plus an image URL, the linking code contains 2 distinct portions: the script portion and the noscript portion. The script portion is the key part of the code.
The script portion instructs the browser to retrieve and display a file that contains the link information or code. In other words, the file that contains the content of the link that your browser will display. This includes code for all the text, images, and functionality of that link, including your affiliate tracking code. When this executes (displays) in a browser, an impression is recorded, so there is no need for an additional pixel.
<script src=
"http://ad.linksynergy.com/fs-bin/show?id=lMh2Xiq9xN0&bids=
52439.720&catid=38&gridnum=0&type=14&subid=0"></script>
The noscript portion will execute as a failsafe if scripts are disabled by the user's browser. It contains a traditional image URL and link that will display a banner from the merchant's image inventory.
<noscript>
<a href="http://click.linksynergy.com/fs-bin/click?id=
lMh2Xiq9xN0&offerid=52439&type=4&subid=">
<img src="http://ad.linksynergy.com/fs-bin/show?id=
lMh2Xiq9xN0&bids=52439&subid=&type=4&gridnum=0"></a></noscript>
You can append the "u1" variable in the script portion URL and in the HREF URL of the noscript portion:
<script src=
"http://ad.linksynergy.com/fs-bin/show?id=lMh2Xiq9xN0&bids=52439.720
&catid=38&gridnum=0&type=14&subid=0&u1=xxxxxxxxxxxxxxxxx">
</script>
<noscript>
<a href="http://click.linksynergy.com/fs-bin/click?
id=lMh2Xiq9xN0&offerid=52439&type=4&subid=&u1=xxxxxxxxxxxxxxxxx">
<img src="http://ad.linksynergy.com/fs-bin/show?id=
lMh2Xiq9xN0&bids=52439&subid=&type=4&gridnum=0"></a></noscript>
Back to top