Nov 23, 2001 #1 Jeremy74 IS-IT--Management Joined Nov 21, 2001 Messages 56 Location 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 Joined Mar 22, 2001 Messages 202 Location 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 Joined Dec 16, 2000 Messages 21 Location 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>