A repository of over 1000 quality jQuery plugins

jQuery Nav

Nav is a jQuery Navigation plugin.

Created by KaptinLin

A jQuery plugin that allows you to easily create website navigation.

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

Nav

A jQuery plugin that allows you to easily create website navigation.

Getting Started

Download the production version or the development version.

In your web page:

Html structure

<nav id="nav">
    <ul>
        <li><a href="homepage.html">Homepage</a></li>
        <li><a href="about.html" class="active">About us</a></li>
        <li><a href="contact.html">Contact</a></li>
    </ul>
</nav>

JavaScript

<script src="jquery.js"></script>
<script src="dist/jquery.nav.min.js"></script>
<script>
jQuery(function($) {
  $("#nav > ul").nav({
    root: {
      effect: 'slide',
      delay: 100,
      hoverIntent: 100,
      inDuration: 200,
      outDuration: 200
    },
    child: {
      effect: 'fade',
      delay: 150,
      hoverIntent: 0,
      inDuration: 200,
      outDuration: 200
    }
  });
});
</script>

Documentation

(Coming soon)

Examples

(Coming soon)

Release History

(Nothing yet)

License

Copyright (c) 2012 KaptinLin
Licensed under the GPL license.



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.