How to Redirect Another Web Page in JQuery?

I’d like to show you a javascript redirect page today. I’d like to share a jQuery-powered redirect page with you. If you have a question about using jQuery to onclick redirect to another page, I will provide a straightforward example and answer it. We’ll use an example jquery redirect page. Let’s look at a jquery redirect url example using the parameter below.

In your js file, you can redirect a page or address. When you need to reroute a page using jQuery, you can utilize window.location.href, which allows you to reroute a URL using jQuery or JavaScript. Let’s look at the example below:

Example 1:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title></title>
</head>
<body>
  
<script type="text/javascript">
    window.location.href = "https://www.cotocus.com";
</script>
  
</body>
</html>

Example 2:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title></title>
</head>
<body>
  
<script type="text/javascript">
    window.location.replace("https://www.cotocus.com");
</script>
  
</body>
</html>
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x