Sorry if this question is basic one.
When i view Page source in browser for my website, the links in menu bar are not visible in view source option. instead i get this:
<div class="nav-container">
<div id="custommenu-loading" class="">
<div class="menu">
<div class="parentMenu menu0">
<a href="javascript:;">
<span>Loading...</span>
</a>
</div>
</div>
<div class="clearBoth"></div>
</div>
<div id="custommenu" class="" style="display:none;">
<div class="menu">
<div class="parentMenu menu0">
<a href="javascript:;">
<span>Loading...</span>
</a>
</div>
</div>
<div class="clearBoth"></div>
</div>
The links are coming from javascript.
the thing which is bothering me is that when i view page source of another site built in magento, i can see all links of that website there as a list.
Will this effect the search engine indexing? Links are not visible in page source then search engines may not crawl all those links?
How do i change it to make all links visible instead of javascript.
Magento version i am using is 1.8.1.0
Thank you.