Hi All
I have a few
onclick="javasc ript:poptastic( 'http://dominatesoftwar e.com/main.php','heig ht=430,width=40 0,resizable=1,s crollbars=1,too lbar=1');"
calls in several html files. The function looks like this
var newwindow;
function poptastic(url,s tuff)
{
newwindow=windo w.open(url,'nam e',stuff);
if (window.focus) {newwindow.focu s()}
}
My problem is the cursor doesn't change to the hand so my users may not
realize there is a link there. I think it is because the javascript doesn't
produce a HREF tag
Is there some way to get a onmouseover thingy to fix this
Yes I'm new to javascript
Len Bell
I have a few
onclick="javasc ript:poptastic( 'http://dominatesoftwar e.com/main.php','heig ht=430,width=40 0,resizable=1,s crollbars=1,too lbar=1');"
calls in several html files. The function looks like this
var newwindow;
function poptastic(url,s tuff)
{
newwindow=windo w.open(url,'nam e',stuff);
if (window.focus) {newwindow.focu s()}
}
My problem is the cursor doesn't change to the hand so my users may not
realize there is a link there. I think it is because the javascript doesn't
produce a HREF tag
Is there some way to get a onmouseover thingy to fix this
Yes I'm new to javascript
Len Bell
Comment