On my website I sell products. On every product detail I have a main content part and a column (right side) filled with the top selling products (this is an ajax call to a cached html page with the top products that regenerates every 15 minutes).
I want this cached paged to be followed (links indexed by spiders) but not indexed. Is this in any way possible?
dummy code:
<div id="container">
<div id="content">product info</div>
<div id="right"></div>
<script>
$('#right').load('www.example.be/right-top.html');
</script>
</div>
I tought about hashtag but I think this is a little overkill? Or could I just do:
$('#right').load('www.example.be/right-top.html#!right-top');