how we redirect page to particular url after cheching one checkbox
Hi Friend,
Try this:
<html>
<script>
function redirectPage(){
if(document.getElementById("check").checked){
window.location.replace("http://www.roseindia.net");
}
}
</script>
<input type="checkbox" id="check" onclick="redirectPage();">
</html>
Thanks