Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to use addEventListener to redirect to another html page on button click?

How to redirect to the next page using addEventListner?

Here, when I click the button it has to redirect to another HTML page
how to write the code for that.

HTML

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

<button>submit</button>

JS

let btn = document.querySelector('button')
btn.addEventListener('click', () => {
    
})

>Solution :

You can try this:

let btn = document.querySelector('button')
btn.addEventListener('click', () => {
    window.location.replace('http://www.example.com');
})
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading