Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Using URL (Static Banner Tracing)

To track on site banner clicks, add the OM.OSB parameter at the end of your banner target URLs with the name of the banner/campaign as the value of the parameter:

Code Block
languagejs
titleExample
sample-site.com/sample-page.html?OM.OSB=bannerName


...

Using Javascript (Dynamic Banner Tracing)

You may trace the following issues using an easy javascript implementation;

  • Banner Clicks
  • Banner Display

Banner Clicks

Code Block
languagejs
titleExample JavaScript Code
linenumberstrue
<script type="text/javascript">
	function rdOnBannerClick(){
		var vl = new Visilabs();
		vl.AddParameter("OM.OSB","banner_name");
		vl.Collect();
	}
	rdOnBannerClick();
</script>
Note

The variable banner_name should not contain spaces or special characters.

...

Banner Display

To track on site banner displays, add the OM.OSBD parameter at the end of your banner target URLs with the name of the banner/campaign as the value of the parameter. There are two different ways for tracing Banner Display with using JavaScript. 

...