Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cursor, and using popup window

Status
Not open for further replies.

Jeremy74

IS-IT--Management
Nov 21, 2001
56
0
0
GB
How do you get the cursor to change from an arrow to a hand when you make a link using the popup window behaviour.

Cheers


Jeremy
 
the easiest way is to simply put your popup window code into a regular link tag...

<a href=&quot;#&quot; onClick=&quot;[popup code]&quot;>your link</a>
 
When using the # your page will jump to the top. Better to use:

<a href=&quot;javascript:;&quot;>foo</a>

or you can make a style for it.

<style type=&quot;text/css&quot;>
<!--
.hand { cursor: hand}
-->
</style>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top