Code:
<form name="f1"> text<br> <input type="checkbox" name="cb1" value="ON"> <b> <span onClick="document.f1.cb1.checked=(! document.f1.cb1.checked);"> <a target="_blank" href="http://test.com">CLICK HERE for more</a></span></b> </form>
Cheers
<form name="f1"> text<br> <input type="checkbox" name="cb1" value="ON"> <b> <span onClick="document.f1.cb1.checked=(! document.f1.cb1.checked);"> <a target="_blank" href="http://test.com">CLICK HERE for more</a></span></b> </form>
<label><input type="checkbox" name="dupa" value="1" /> click here to check/uncheck</label>
<input
type="checkbox"
value="http://www.google.com"
name="checket"
onClick="if (this.checked) { window.location = this.value; }"
/>

Comment