Answers for "onclick to next page in html"

0

onclick to next page in html

<!DOCTYPE html>
<html>

	<body>
    
    	<script>
        
        	document.onclick = function(){
            	window.location.href = 'your link here';
            }

        </script>
        
    </body>
    
</html>
Posted by: Guest on March-22-2022

Browse Popular Code Answers by Language