Omniture Web CMS, , . (.. ). , , , .js , , , , ( , ). , Omniture , . , , javascript, , Omniture. , SEO, , Omniture. .
, , . , , div. , div , Omniture, javascript javascript (, jQuery). , , HTML, , , a.manned-flight. , .
, , , HTML. , Omniture. , .
, . , , .
<div class="product-item">
<input class='item-title' type='hidden' value='Book Title #1 Specific Page Name'/>
<input class='other-stuff-for-analytics' type='hidden' value='More stuff here'/>
<h3>Book Title #1</h3>
<p>Description of Book Title #1 and some junk...</p>
</div>
<div class="product-item">
<input class='item-title' type='hidden' value='Book Title #2 Specific Page Name'/>
<input class='other-stuff-for-analytics' type='hidden' value='More stuff here'/>
<h3>Book Title #2</h3>
<p>Description of Book Title #2 and some junk...</p>
</div>
<div class="product-item">
<input class='item-title' type='hidden' value='Book Title #3 Specific Page Name'/>
<input class='other-stuff-for-analytics' type='hidden' value='More stuff here'/>
<h3>Book Title #3</h3>
<p>Description of Book Title #3 and some junk...</p>
</div>
<script>
$('div.product-item').click(function () {
var analyticsPageName = "";
analyticsPageName = $(this).children('input.item-title').val();
analyticsPageName = $(this).children('h3').text();
s.pageName = analyticsPageName;
s.t();
$('html, body').animate({
scrollTop: 1250
}, 1000, function () {
parallaxScroll();
});
return false;
});
</script>