How to redirect from one page to another in html on button click

In the example below, we’re going to show you how to redirect from one page to another in HTML with a simple button click. When someone clicks this button they are taken to the next page on our site (page 2). We want them to be redirected back to the home page when they click this button. To do that we will use JavaScript and some JavaScript functions we have seen before.

js onclick redirect

on Jan 01, 1970
<button onclick="location.href='www.yoursite.com'">Click Me</button>

Add Comment

1

how to open a new html page on button click in javascript

on Jan 01, 1970
<button id="myButton" class="float-left submit-button" >Home</button>

<script type="text/javascript">
    document.getElementById("myButton").onclick = function () {
        location.href = "www.yoursite.com";
    };
</script>

Add Comment

0

The above code will redirect the current page to a specific URL. The code is not hard to understand, but it's not very useful either.

Html answers related to "how to redirect from one page to another in html on button click"

View All Html queries

Html queries related to "how to redirect from one page to another in html on button click"

how to redirect from one page to another in html on button click how to redirect to html page from servlet how to create button on button click Html click to share url to facebook how to add preloader in html page html login page html new page enable html button How to create an HTML button that acts like a link? Html button open url html button color html button wit link bootstrap modal on image click codepen do not close dialog box when click outside bootstrap modal vue right click input type on click submit buttom show Display HTML snippets in HTML While converting HTML 4 elements to HTML 5 semantic elements, will be converted into The template root requires exactly one element.eslint-plugin-vue bootstrap modal causes page shift how to make an alert on a page Js reload page Page refused to connect iframe bootstrap 3 button bootstrap center button horizontally bootstrap button center Show text when hover over button bootstrap 4 button size twitter share button example ionic 1 button bootstrap button full width bootstrap button drak lity open modal hide close button bootstrap 5 radio button thymeleaf radio button Twitter share button for website bootstrap icon button Bootstrap search box with submit button html open link in new tab open new tab html radio buttons html is html a programming language grey color html code html boilerplate code html input textarea tab space in html how to set background video in html how to set background in html html tutorial html q tag how to make html text bold how to make vertical line in html html create background image html data-target modal capitalize input text html html text color integrate html with laravel + react html iframe connection refused where do you put style tags in html html address which is right or in html how to add .java files to html html umlaute html to react native how do i make a line in html html enlace how to add lazy loading in html html tag html lang attribute how to create a table html html title tag html video repeating how to use link tag in html width html placeholder in date input html what should base_generic.html look like how to change font color of h2 tag in html html figure html newline add script file in html div in html input accept excel html smarty print html html for beginners html code block online html editor how to make an image link on html preformatted text html download in html html form attributes how to add an svg image to html how to make a calculator website HTML html script mime type embed youtube channel in html html text input html to pug scrollbar in html div input type file pattern attribute in html start a video at a certain time and end time html razor raw html how to add an email box in html liens hypertexte html mdn html nav how to create a drop down list in html shopify custom html image tag src attribute whatsapp link in html jinja2.exceptions.templatenotfound: templates/index.html whatsapp html code for website how to add heading html how to link scss to html image upload in html HTML Audio Cards in html comments html.erb block elements in html herf downloadin html &mdash html Index.html basic template html coding examples Img src a href html emojis html html ahref link add logo in html basic html template html banner code How to change date format in html input type date emailto html html input checkbox checked How to set maxlength of input type number in html how to make div responsive in html css html code for inserting image html whatsapp link

Browse Other Code Languages

CodeProZone