Question about omniture tracking and mobile clicks

Hi,

I have implemented omniture on a site, and it is supposedly reporting clicks done on landscape mobile view and up (tablets etc) as desktop clicks. I Have never worked with this before and can’t find any good documentation about stuff like this. I have this code, which i guess is a very basic implemenation of omniture?

	<script language="javascript" src="http://xxx/static/scripts/s_code.js" type="text/javascript"></script>

	<script language="javascript" type="text/javascript">
		(function(s){
		s.pageName="xxx:<?= $post_slug; ?>";
		s.channel="xxx";
		s.hier1="xxx";
		s.prop1="xxx";
		s.prop4="article";
		s.prop5="<?= $post_slug; ?>";
		s.prop11="xxx";
		s.prop41="unlocked";

		/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
		var s_code=s.t();if(s_code)document.write(s_code)})(s);
	</script>

Does anyone point me in the right direction on this if possible? I guess I have to use user.agent to detect devies but I have no idea where or how:P

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.