Click to See Complete Forum and Search --> : Custom cursor using JavaScript?


GamerBlake
06-15-2003, 09:49 PM
Anyone know a script for making a custom cursor appear on your page? I had one somewhere but seem to have lost it..

pyro
06-15-2003, 09:59 PM
It is actually CSS:

<style type="text/css">
body {
cursor: url("yourcursor.cur");
}
</style>

GamerBlake
06-16-2003, 04:22 AM
Thanks, works nicely :)