Quote:
Originally Posted by rogueteens
no, not really. i want the actual checkbox to be connected to a hyperlink so that when the surfer clicks the box they get sent to a url.
|
Code:
<input
type="checkbox"
value="http://www.google.com"
name="checket"
onClick="if (this.checked) { window.location = this.value; }"
/>
__________________
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
|