changing the mouse pointer

I have the following code on a page that I'm working on.<br />
<br />
function OpenMe(newin) <br />
{<br />
flyout=window.open(newin,"flyout","resizable=no,scrollbars=yes,width=500,height=300,top=10,left=10");<br />
return false;<br />
}<br />
......<br />
<li><a onclick="OpenMe('faq-i.html')">How do I order a survey?</a><br />
<br />
The problem is, that when the mouse moves over the 'How do I order a survey?' it doesn't change to the little hand, it stays as a I cursor. Is there a way to change this? (I don't want to have <a href=http://www.webdeveloper.com/forum/archive/index.php/"..." onclick="....">)<br />
<br />
The webpage is at <!-- w --><a class="postlink" href="http://www.ces-canada.com/cesrpr.htm">www.ces-canada.com/cesrpr.htm</a><!-- w --><br />
<br />
Thanx<!--content-->Try this:<br />
<br />
<a onclick="OpenMe('faq-i.html')" style="cursor: hand;">How do I order a survey?</a><br />
<br />
It works for IE but I haven't tested it for NS yet. It also might be easier to put it into a style sheet.<br />
<br />
Havik<br />
<br />
EDITED: had an extra '>' that needed to be taken out<!--content-->worked like a charm... thnx<!--content-->Here's a better way of doing it:<br />
<br />
style="cursor: pointer; cursor: hand;"<br />
<br />
I found this page and it explains why there<br />
<!-- m --><a class="postlink" href="http://devedge.netscape.com/viewsource/2002/cursor/">http://devedge.netscape.com/viewsource/2002/cursor/</a><!-- m --><br />
<br />
Havik<!--content-->
 
Back
Top