vsn4ik / bootstrap-submenu

Bootstrap sub-menus

Home Page:https://vsn4ik.github.io/bootstrap-submenu/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

missing preventDefault() on click action

mchccc opened this issue · comments

I believe there should be a call to preventDefault() bound to the click event: I'm adding a href attribute to my anchors for sameness' sake, and the browser gets sent around the page on click events on submenus.

What do you think?
Thanks for your work.

Thanks for issue. I think adding href attribute for not passing <a> bad practice.

For fix this issue use before $.fn.submenupicker function this code:

<script>
$('.dropdown-submenu > a').on('click.bs.dropdown', function(event) {
  event.preventDefault();
});
</script>