Action happening after window.location.replace
After a lot of messing around and guesswork, I have managed to get someone else's (can't remember who to give credit, sorry) slide toggle menu to work with 2 levels, I now have only one minor problem. I have a return false; statement after my window.location.replace but after the link is clicked, the first level slides up. I want the slider to not move after I have clicked a link. This might sound like a VERY minor problem but these things make the difference between a good site and a great site. Apologies for my code, I am new to JS and JQuery. Any help would be greatly appreciated.
- jQuery(document).ready(function()
{
//hide child page
jQuery('#left ul li ul li.page_item ul').hide();
//when navigate to a child page show all pages
jQuery('#left ul li ul li.current_page_item').parent("ul").show();
//when navigate to a child page show all pages
jQuery('#left ul li ul li ul li.current_page_parent').parent("ul").show();
//show page list when toggle
jQuery('#left ul li ul li.active ul').show();
//show cerrent page's child page
jQuery('#left ul li ul li.current_page_item > ul').show();
//show cerrent page's child page
jQuery('#left ul li ul li.current_page_parent ul li.current_page_item').show();
//show cerrent page's child page
//jQuery('#left ul li ul li.current_page_item ul li.current_page_item ul li.current_page_item').show();
jQuery('#left ul li ul li').click(function() {
jQuery(this).addClass("active");
jQuery('a').click(function() {
window.location.replace(jQuery(this).attr('href'));
return false;
});
jQuery(this).children('ul').click(function () {
return false;
});
jQuery(this).children('ul').slideToggle("slow");
});
});
- <div id="left">
<ul>
<li class="pagenav"><h2>Pages</h2><ul><li class="page_item page-item-19"><a href="http://staging.cibydesign.co.uk/camberleyengineers" title="Home">Home</a></li>
<li class="page_item page-item-10"><a href="www.mylink.com/about-us/" title="About Us">About Us</a></li>
<li class="page_item page-item-13 current_page_ancestor"><a href="www.mylink.com/sectors/" title="Sectors">Sectors</a>
<ul>
<li class="page_item page-item-31 current_page_ancestor current_page_parent"><a href="www.mylink.com/sectors/oil-and-gas-petrochemical/" title="Oil & Gas">Oil & Gas</a>
<ul>
<li class="page_item page-item-74 current_page_item"><a href="www.mylink.com/sectors/oil-and-gas-petrochemical/recent-projects/" title="Recent Projects">Recent Projects</a></li>
<li class="page_item page-item-76"><a href="www.mylink.com/sectors/oil-and-gas-petrochemical/services/" title="Services">Services</a></li>
</ul>
</li>
<li class="page_item page-item-33"><a href="www.mylink.com/sectors/power-and-infrastructure/" title="Power & Infrastructure">Power & Infrastructure</a>
<ul>
<li class="page_item page-item-88"><a href="www.mylink.com/sectors/power-and-infrastructure/recent-projects/" title="Recent Projects">Recent Projects</a></li>
<li class="page_item page-item-90"><a href="www.mylink.com/sectors/power-and-infrastructure/services/" title="Services">Services</a></li>
</ul>
</li>
<li class="page_item page-item-37"><a href="www.mylink.com/sectors/railway/" title="Railways">Railways</a>
<ul>
<li class="page_item page-item-93"><a href="www.mylink.com/sectors/railway/recent-projects/" title="Recent Projects">Recent Projects</a></li>
<li class="page_item page-item-95"><a href="www.mylink.com/sectors/railway/services/" title="Services">Services</a></li>
</ul>
</li>
<li class="page_item page-item-35"><a href="www.mylink.com/sectors/renewable-energy/" title="Renewable Energy">Renewable Energy</a>
<ul>
<li class="page_item page-item-97"><a href="www.mylink.com/sectors/renewable-energy/recent-projects/" title="Recent Projects">Recent Projects</a></li>
<li class="page_item page-item-99"><a href="www.mylink.com/sectors/renewable-energy/services/" title="Services">Services</a></li>
</ul>
</li>
</ul>
</li>
<li class="page_item page-item-16"><a href="www.mylink.com" title="Contact Us">Contact Us</a></li>
<li class="page_item page-item-81"><a href="www.mylink.com/recent-projects/" title="Recent Projects">Recent Projects</a></li>
<li class="page_item page-item-12"><a href="www.mylink.com/services/" title="Services">Services</a></li>
<li class="page_item page-item-49"><a href="www.mylink.com/links-and-affiliates/" title="Affiliates">Affiliates</a></li>
</ul></li>
</ul>
</div>