toorudez
04-09-2003, 03:04 PM
I have the following code on a page that I'm working on.
function OpenMe(newin)
{
flyout=window.open(newin,"flyout","resizable=no,scrollbars=yes,width=500,height=300,top=10,left=10");
return false;
}
......
<li><a onclick="OpenMe('faq-i.html')">How do I order a survey?</a>
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="..." onclick="....">)
The webpage is at www.ces-canada.com/cesrpr.htm
Thanx
function OpenMe(newin)
{
flyout=window.open(newin,"flyout","resizable=no,scrollbars=yes,width=500,height=300,top=10,left=10");
return false;
}
......
<li><a onclick="OpenMe('faq-i.html')">How do I order a survey?</a>
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="..." onclick="....">)
The webpage is at www.ces-canada.com/cesrpr.htm
Thanx