jQuery Plugins

jQuery plugins I've built

jQuery Plugin: Hover Padding

A jQuery plugin that applies a hover effect to the given element.

Usage

Incude Script

The Javascript
$('li').hoverPadding();

jQuery Plugin: Scroll To Top

A jQuery plugin that places a Tumblr style “Scroll To The Top” element on your page.

Usage

Incude Script

The Javascript
$().scrollToTop();

jQuery Plugin: Scroll Down

A jQuery plugin that allows you to easily create content which scrolls down.

Usage

Incude Script

The HTML
<h2 class="scroll">Heading</h2>
<div class="scroll-down">
<ul>
  <li>List Item</li>
  <li>List Item</li>
  <li>List Item</li>
  <li>List Item</li>
</ul>
</div>
The Javascript
$('h2.scroll').scrollDown({
 	content: ".scroll-down"
});

jQuery Plugin: Scroll Gracefully

A jQuery plugin that allows you smoothly and gracefully scroll to other positions on the page.

Usage

Incude Script

The HTML
<div class="graceful"></div>
The Javascript
$j('.graceful').scrollGracefully();