Learn JavaScript – How To Make Page Redirect Using jQuery

In programming languages, functions are often gathered together in packages and methods ready for use. They are called frameworks and aim to help developers save time to get the expected result.

In JavaScript, jQuery is one of these frameworks, and we’ll take a closer look at it and how to make a page redirect using it.

What is jQuery?

It is a framework for JavaScript. jQuery is designed keeping in mind the slogan “Write less, the more” (Write less, do more). The purpose of jQuery is to make it easier to use Javascript on websites. It replaces complicated and major tasks for faster JavaScript functions and compatible with most browsers.

How to make page redirect using jQuery

To redirect a page using jQuery in JavaScript, you can use the line described below:

$(location).attr("href", "http://www.livecoding.tv");

 

How to redirect a page using plain JavaScript 

However, this page redirection task is relatively simple. Thus, you would not need to use jQuery as optimization programming tool.

A more logical solution would be to use one of the lines below to make the page redirect using JavaScript itself, as it already has greater flexibility provided for this case.

// Similar to HTTP redirect behavior
window.location.replace ("Http://livecoding.tv");
// Similar behavior to click a link
window.location.href =  "Http://livecoding.tv"  ;
// Open a new window without losing origin
window.open (  "Http://livecoding.tv"  )

The “replace ()” removes the source page of your browsing history, which makes it smaller if the user wants to return to a previous page without too many clicks. If you want to simulate a click on the link, use the “location.href”.

These were some examples of how to perform this activity. If you know of another way to do it, please share in the comment section below.

For other applications using jQuery in JavaScript, you can access this link and watch a video like this one:

 

Another way to find cool stuff about jQuery is to check our project page !

Dr. Michael J. Garbade

I, Dr. Michael J. Garbade is the co-founder of the Education Ecosystem (aka LiveEdu), ex-Amazon, GE, Rebate Networks, Y-combinator. Python, Django, and DevOps Engineer. Serial Entrepreneur. Experienced in raising venture funding. I speak English and German as mother tongues. I have a Masters in Business Administration and Physics, and a Ph.D. in Venture Capital Financing. Currently, I am the Project Lead on the community project -Nationalcoronalvirus Hotline I write subject matter expert technical and business articles in leading blogs like Opensource.com, Dzone.com, Cybrary, Businessinsider, Entrepreneur.com, TechinAsia, Coindesk, and Cointelegraph. I am a frequent speaker and panelist at tech and blockchain conferences around the globe. I serve as a start-up mentor at Axel Springer Accelerator, NY Edtech Accelerator, Seedstars, and Learnlaunch Accelerator. I love hackathons and often serve as a technical judge on hackathon panels.

View Comments

Recent Posts

Highest Stable Coin Yields – (W16 – 2024)

Another week to bring you the top yield platforms for three of the most prominent…

2 weeks ago

LEDU Token OTC Trading

If you hold a large volume of LEDU tokens above 1 million units and wish…

1 month ago

Highest Stable Coin Yields – (W12 – 2024)

It’s another week and like always we have to explore the top yield platforms for…

1 month ago

Binance Auto Invest – the Best Innovation in Crypto since Sliced Bread

At a time where we’re constantly seeking tools and strategies to simplify our crypto investments,…

1 month ago

Highest Stable Coin Yields – March 2024

As we kick off another week, it's time to explore the top yield platforms for…

2 months ago

Education Ecosystem Featured on Business Insider

We're excited to share that Education Ecosystem was recently featured in an article on Business…

2 months ago