Manual integration

Add the following attribute to the HTML element which contains the product name: webyclip="ProductName"
Example:

<h1 webyclip="ProductName"><%=$productName></h1>

Add the following attribute to the HTML element which contains the product name: webyclip="ModelName"
Example:

<span webyclip="ModelName"><%=$modelName></span>

Add the following attribute to the HTML element which contains the product name: webyclip="BrandName"
Example:

<span webyclip="BrandName"><%=$brandName></span>

Paste the following code into your website’s head section:

<script type="text/javascript">
	webyclipCustomer='CUSTOMER_GUID';
	(function() {
		function async_load(){ 
			var s = document.createElement('script');
			s.type = 'text/javascript';
			s.async = true;
			s.src = (("https:" == document.location.protocol) ? 'https://' : 'http://') 
				+ 'www.webyclip.com/webyclip/WebyClipPlugin.js';
			var x = document.getElementsByTagName('script')[0];
			x.parentNode.insertBefore(s, x);
		}
		if (window.attachEvent)
			window.attachEvent('onload', async_load);
		else
			window.addEventListener('load', async_load, false);
	})();
</script>