How To Set Href To A Checkbox On Click?
1.How to set href to a checkbox on click Yes
Solution 1:
Just make your code simple:
<input type="checkbox" id="chk1" />Yes
<input type="checkbox" id="chk2" />NO
<script type="text/javascript">
$(document).ready(function(){
$('#chk1').click(function(){
window.location='http://www.yahoo.com'; // link of your desired page.
});
});
</script>
Post a Comment for "How To Set Href To A Checkbox On Click?"