Aug 13, 2003 #1 ddfff MIS Sep 27, 2002 125 US What is the best way to allow a user to only click a link once on a particular page? Thanks in advance.
What is the best way to allow a user to only click a link once on a particular page? Thanks in advance.
Aug 13, 2003 #2 adam0101 Programmer Jun 25, 2002 1,952 US This works ok: <a href="..." onclick="return window.x?false:window.x=1">click me</a> Adam Upvote 0 Downvote
This works ok: <a href="..." onclick="return window.x?false:window.x=1">click me</a> Adam