To remove the parent link from a dropdown navigation menu, add this to the website head:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript">
</script>
<script type="text/javascript">
/* Remove parent link from dropdown navigation */
$(document).ready(function() {
$("li.jmd-nav__list-item-0.j-nav-has-children").hover(function() {
$(this).children("a").click(function() {
return false;
});
});
});
</script>