Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1757 How can I define my own mouse cursor for the Internet Explorer using my own *.ico file?

You are here: irt.org | FAQ | JavaScript | Pointer | Q1757 [ previous next ]

You can define a custom cursor through style, but I am not sure if this will work in IExplorer 5. But anyways you can't add .ico file; only .cur and .ani supported.

Here's how it's done:

<style>
A { cursor: url("http://www.microsoft.com/cursors/cursor.cur"); }
</style>

Submitted by explosion

©2018 Martin Webb