Looks like you have changed it back to "#" for now, at least on the main page. If you prefer that for some reason, you can keep it and add:
Code:
<script type="text/javascript">
jQuery(function($){
$('[href$="#"]').click(function(e){e.preventDefault();});
});
</script>
Anywhere after an instance of the main jQuery script is associated with the page. It will perhaps be better than the "javascript:void(0)" href idea.
Please note. You can use the "#" href with the above script, OR the "javascript:void(0)" href by itself - your choice.
The main difference I can see is that with the script and "#" href, on the PC you still have to click on Honda to see the sub menu, while with the "javascript:void(0)" href, the sub menu appears on hover of Honda on the PC.
Bookmarks