How to redirect page using javascript ?

File name : index.php

<!-- <script>
setTimeout(function () {
window.location.href = 'http://ittutorial.in/'; // the redirect goes here

},300);
</script>
//-->

<script type="text/javascript">


/* if(error == true){

// Your application has indicated there's an error
window.setTimeout(function(){

// Move to a new location or you can do something else
window.location.href = "https://www.ittutorial.in";

}, 5000);

//} */








</script>



<script type="text/javascript">
function Redirect()
{
window.location="http://www.ittutorial.in";
}
document.write("You will be redirected to a new page in 5 seconds");
setTimeout('Redirect()', 300);
</script>




<script type="text/javascript">


$(document).ready(function () {
// Handler for .ready() called.
window.setTimeout(function () {
location.href = "https://www.ittutorial.in";
}, 200);
});

</script>






<html>
<head>

<script type="text/javascript">

function Redirect() {
window.location="http://www.ittutorial.in";
}

</script>

</head>

<body>
<p>Click the following button, you will be redirected to home page.</p>

<form>
<input type="button" value="Redirect Me" onclick="Redirect();" />
</form>

</body>
</html>

How to redirect page using jscript.

File name : index.php

<select id = "pricingOptions" name = "pricingOptions">
<option value = "500">Option A</option>
<option value = "1000">Option B</option>
</select>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type = "text/javascript" language = "javascript">
jQuery(document).ready(function() {
jQuery("#pricingOptions").change(function() {
if(this.options[this.selectedIndex].value == "500") {
window.location = "http://ittutorial.in";
//window.location = "http://ittutorial.in/hi.php?option=500";
}

else if(this.options[this.selectedIndex].value == "1000") {
window.location = "http://google.com";
}
});
});
</script>


<input type="button" onclick="document.location.href = 'http://ittutorial.in'" value="Go to itechtuto">
<input type="button" onclick="document.location.href = 'your_page.php?var1=value1&var2=value2';" value="Go">



<button onclick="setTimeout(myFunction, 3000);">Try it</button>
<script>
function myFunction() {
alert('Hello');
}
</script>

How to redirect url using page load

<script language=javascript>
function redirect(){
window.location = "http://ittutorial.in";
}
</script>

<body onload="redirect()">

</body>

Redirect page when click on button

<script>
// onclick event is assigned to the #button element.
document.getElementById("button").onclick = function() {
window.location.href = "http://www.ittutorial.in";
};
</script>
The above code will do the redirection when the user clicks the #button element.





Previous Next


Trending Tutorials




Review & Rating

0.0 / 5

0 Review

5
(0)

4
(0)

3
(0)

2
(0)

1
(0)

Write Review Here