<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>jQuery Grab Bag - Image Rollover Plugin</title>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://onehackoranother.com/feed/" />
<link rel="alternate" type="text/xml" title="RSS .92" href="http://onehackoranother.com/feed/rss/" />
<link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="http://onehackoranother.com/feed/atom/" />
<script type='text/javascript' src='javascripts/jquery-1.2.6.min.js'></script>
<script type='text/javascript' src='javascripts/jquery.rollover.js'></script>
<link rel="stylesheet" href="stylesheets/main.css" type="text/css" />
</head>
<body>
<div id='container'>
<h1>
grab bag <span class='subtitle'>- assorted jQuery plugins</span>
</h1>
<div id='sidebar'>
<ul id='project-nav'>
<li><a href='index.html'>Plugin List</a></li>
</ul>
<ul id='ohoa-nav'>
<li><a href='http://onehackoranother.com/feed/' id='subscribe'>Subscribe for updates »</a></li>
<li><a href='http://onehackoranother.com/projects/'>Back to projects »</a></li>
<li><a href='http://onehackoranother.com/'>Back to onehackoranother.com »</a></li>
</ul>
</div>
<div id='main'>
<h2>Image Rollover</h2>
<p>Apply rollover image switch effect to any elements with the <code>src</code>
attribute. Rollover image URL is determined by inserting <code>_h</code> before
the image extension, and any images which already match this format will not
have the effect applied. Pass <code>true</code> to preload images.</p>
<pre>$('img').rollover(true);</pre>
<img src='images/r.gif' />
<img src='images/r.gif?foo=bar' />
<img src='images/r_h.gif' />
<p style='font-size:90%'>(images from <a href='http://www.externalharddrive.com/graphics/bullets/index.html'>External Hard Drive</a>)</p>
<script type='text/javascript'>
$(function() {
$('img').rollover();
});
</script>
<h2>Direct Link</h2>
<p><a href='http://github.com/jaz303/jquery-grab-bag/tree/master/javascripts/jquery.rollover.js'>jquery.rollover.js</a></p>
</div>
</div>
</body>
</html>