Skip to content

Instantly share code, notes, and snippets.

@CreativeSeo33
Last active October 16, 2018 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CreativeSeo33/1687ea3f8523289ef1cc to your computer and use it in GitHub Desktop.
Save CreativeSeo33/1687ea3f8523289ef1cc to your computer and use it in GitHub Desktop.
Выпадающее меню Bootstrap при наведении
@media only screen and (min-width : 768px) {
/* Make Navigation Toggle on Desktop Hover */
.dropdown:hover .dropdown-menu {
display: block;
}
}
$('.dropdown-toggle').click(function() {
var location = $(this).attr('href');
window.location.href = location;
return false;
});
@CreativeSeo33
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment