Forum Moderators: Robert Charlton & goodroi
something like this: <script language='javascript'>
function gotoCategory(id){
if (id.value!=''){
window.location=id.value;
return true;
}
}
</script>
<select name='Category' onchange='gotoCategory(this)'>
<OPTION value=''>Go Directly To:</OPTION><OPTION value='/category.html'>Category1</OPTION>
Does anyone have any experience?
thanks,
Worth trying?
<li><a href="/link-to-z" rel="z"><span>Z</span></a></li>
<li><a href="/link-to-x" rel="x"><span>X</span></a></li>
and then
<div id='z' class='****'><a href='/link/'>product</a></div>
<div id='x' class='****'><a href='/link2/'>product2</a>
Clicking on the letter will display all the products with that letter. Looking at the source, all the links are in there like this:
<li><a href="/link-to-z" rel="z"><span>Z</span></a></li>
<li><a href="/link-to-x" rel="x"><span>X</span></a></li>
I tried this around the bottom of the page since it takes a lot less space (600 by 100 or so) and didn't want to change my side menus. I hope google likes it. It's functional since users can navigate their entire sitemap within a few seconds, and the links gets seen.
On edit: it has .innercontent{display: none;} and the content loads, but is only seen after the user clicks on the letter B for example to see the products that start with "B". Will goog see this as cheating?
On edit: it has .innercontent{display: none;} and the content loads, but is only seen after the user clicks on the letter B for example to see the products that start with "B". Will goog see this as cheating?
No - it's a very standard show/hide div script. When ordinary (and even explicitly called for) user action displays the content, you're fine.