Hi all,
I'm creating different pages on a website for each branch in the country for a business. The way the user gets to their branch is through a dreamweaver generated jump menu.
My question is: Will search engine robots crawl the pages that are linked via the jump menu?
So for example the page for the London branch can only be navigated to via the jump menu (or typing in the url in the address bar). Will a search engine index this page?
The jump menu script is below:
<script type="text/javascript">
<!--
function MM_jumpMenuGo(objId,targ,restore){ //v9.0
var selObj = null; with (document) {
if (getElementById) selObj = getElementById(objId);
if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0; }
}
//-->
</script>
<form id="form">
<select name="country" id="country" onchange="MM_jumpMenuGo('country','parent',0)">
<option value="">Choose</option>
<option value="">======</option>
<option value="england">England</option>
<option value="scotland">Scotland</option>
<option value="wales">Wales</option>
<option value="northernireland">Northern Ireland</option>
</select>
<input type="button" name="go_button" id= "go_button" value="Go" onclick="MM_jumpMenuGo('country','parent',0)" />
</form>