Ever wanted to create Custom Cursor for different elements on your page?

It is a little known fact that although possible through CSS, custom cursors don't work
in most browsers! what a shame.

I made this small plugin to simply enable people create custom cursors with any
image format they wish (unlike the CSS solution that makes you use .cur files, ha?!)

Example Page

all you need to do is write a small JS code:

1
2
3
$(document).ready(function() {<br />
customcursor($('#smileDiv'),'smile.gif');<br />
});

of course you can insert the line inside an already existing document.ready function

Requirements:

Download Custom Cursor Plugin

jQuery plugin Page