Answers for "how to go to make a button go to another page in dom"

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
0

html button click go to section

<html>
  <a href="#down">Click Here to Smoothly Scroll Down</a>
  <div id="down">
    <h1>You are down!</h1>
  </div>
</html
Posted by: Guest on August-31-2021

Code answers related to "how to go to make a button go to another page in dom"

Browse Popular Code Answers by Language