A repository of over 1000 quality jQuery plugins

jQuery HorizontalNav

HorizontalNav is a jQuery Navigation plugin.

Created by Sebnitu

A jQuery plugin that spans a horizontal navigation to fit the full width of it’s container.

Not what you're looking for? Click here to view more Navigation jQuery plugins

HorizontalNav

HorizontalNav is a jQuery plugin that spans a horizontal navigation to fit the full width of it's container. If you've ever had to create this effect on a project, you'll know it's pretty annoying to do. But this plugin makes it easy and adds support for IE7.

By Sebastian Nitu

Plugin URI: https://github.com/sebnitu/HorizontalNav
Author URI: http://sebnitu.com/
Online Demo: http://sebnitu.github.com/HorizontalNav/

How do I use it?

1) Firstly, include a copy of jQuery in your document. You can download your own copy of jQuery at http://jquery.com or link to the Google hosted script:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

2) Download and include HorizontalNav in your document as well:

<script src="jquery.horizontalNav.js"></script>

3) Call the horizontalNav function in your document ready function:

$(document).ready(function() {
  $('.nav-wrapper').horizontalNav();
});

4) You can override the default settings by passing in parameters like this:

$(document).ready(function() {
  $('ul').horizontalNav({
    responsive : false
  });
});

5) That's it! Your navigation never looked so good :)

But wait, can't I just do this effect using display: table?

Yes, you totally can! And if you don't need to support IE7 then that is the best way that I've found to create this effect. And that's exactly what this plugin uses to create the effect for modern browsers. But if you DO need to support IE7, this plugin is a great polyfill for you. Thanks to hitsthings for bringing this issue up :)

I can't figure out how this works. Is this thing broken?

Although, I would love to help when I can, I am usually pretty swamped with work and can not spare much time helping with support questions. Please make sure to check the documentation or Google your question before writing me for help. I do my best to respond to all my emails but it may take me some time to get to all of them.

If you have any feature requests just let me know! If enough people want a feature I'll most likely built it into the next version.

Using HorizontalNav in your project? Let me know! Shoot me a link of where you're using it.

License

HorizontalNav is built and maintained by Sebastian Nitu and is licensed under the MIT License (MIT). Follow me on Twitter, GitHub and Dribbble.



You might also like these other Navigation jQuery Plugins

  • Navigation

    A jQuery plugin for simple responsive navigation.

  • jQuery Konami

    jQuery plugin to trigger an event after the success of the Konami Code (up up down down left right left […]

  • Headroom.js

    Give your pages some headroom. Hide your header until you need it.

License:

The MIT License (MIT)