Nov 23, 2001 #1 Jeremy74 IS-IT--Management Nov 21, 2001 56 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
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
Nov 23, 2001 #2 secretsquirrel Programmer Mar 22, 2001 202 GB the easiest way is to simply put your popup window code into a regular link tag... <a href="#" onClick="[popup code]">your link</a> Upvote 0 Downvote
the easiest way is to simply put your popup window code into a regular link tag... <a href="#" onClick="[popup code]">your link</a>
Nov 24, 2001 #3 romannl Programmer Dec 16, 2000 21 NL When using the # your page will jump to the top. Better to use: <a href="javascript:;">foo</a> or you can make a style for it. <style type="text/css"> <!-- .hand { cursor: hand} --> </style> Upvote 0 Downvote
When using the # your page will jump to the top. Better to use: <a href="javascript:;">foo</a> or you can make a style for it. <style type="text/css"> <!-- .hand { cursor: hand} --> </style>