Skip to content

Instantly share code, notes, and snippets.

@mattnorris
Last active March 20, 2020 10:15
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 mattnorris/5114074 to your computer and use it in GitHub Desktop.
Save mattnorris/5114074 to your computer and use it in GitHub Desktop.
Highlight the active nav link with jQuery in Twitter Bootstrap. The deprecated "navify" jQuery plugin is also included for reference. This isn't needed anymore because of Bootstrap.
// Include in a <script> tag.
$(function() {
// Highlight the active nav link.
var url = window.location.pathname;
var filename = url.substr(url.lastIndexOf('/') + 1);
$('.navbar a[href$="' + filename + '"]').parent().addClass("active");
});
/**
* >>>>>>>>>>>>>>>> DEPRECATED <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
*
* Title: jquery.navify.js
* Description: jQuery plugin to easily inactivate the current page's
* navigational link
* Author: Matt Norris
*/
// Anonymous function wrap to avoid conflicts
(function($) {
/***************************************************************************
* Navify
**************************************************************************/
/**
* Allows the same basic HTML for each page in a site, but with a simple
* call attached to the navigational UL element, it transforms the list
* into a navigation bar, using CSS to activate and deactivate links.
*
* Note that the nthItem parameter starts at 1, not 0.
*
* @param {int} nthItem
* @param {dictionary} options
*
* See the page below for variable notation.
* @see: http://www.joelonsoftware.com/articles/Wrong.html
*
* c = count
* css = CSS classname
* a = active
* i = inactive
* t = text
*/
$.fn.extend({
navify: function(nthItem, options) {
var defaults = {
aNav: "nav-active", // class name for the active nav links
iNav: "nav-inactive", // class name for the current nav link
hlNav: "nav-highlight" // class name for mouseovers
}
var opts = $.extend(defaults, options);
return this.each(function() {
var $list = $(this);
// Deactivate the current page's list item by styling it
// appropriately and deactivating its link.
var aItem = $("li:nth-child(" + nthItem + ")", $list);
aItem.addClass(opts.iNav).click(function() {
return false;
});
// Activate the remaining list items, enlarge their
// target areas, and style them.
var iItems = $("li:not(." + opts.iNav + ")", $list);
iItems.click(function() {
window.location = $("a:first", this).attr("href");
})
.addClass(opts.aNav)
.live("mouseover mouseout", function() {
$(this).toggleClass(opts.hlNav);
});
});
} // navify
}); // $.fn.extend
})(jQuery);
@apical2
Copy link

apical2 commented Dec 1, 2015

Hi Matt,
Im fairly new to coding & bootstrap and was hoping you could explain how to use your code. Im looking to create a website with about 25 pages & was going to put the navigation into an include file as it will be eaiser to update all pages but i dont know how to get around setting the Active Page in the nav.

Many thanks in advance.

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