Yogesh Chauhan's Blog

How to redirect or load a new document using JavaScript?

in JavaScript on March 14, 2021

Web APIs in JavaScript are really useful. One of the interfaces available is Location interface that has several properties and methods we can take advantage of.

We can use location.replace() or location.assign() method to redirect user to a new location.

Location replace() method in JavaScript

The replace() method simply replaces the current HTML document with a new one.

Location assign() method in JavaScript

The replace() method simply loads new HTML document in the browsing window.

What’s the difference between assign() and replace() methods in JavaScript?

The replace() method removes the URL of the current document from the browser’s document history. So, that the user can not go back using the “back” button in the browser. That way you can stop users from going back to the original document.

Which one should you use between assign() and replace() methods in JavaScript?

It depends on your requirements. If you want to give your users an option to go back to the original document, use the assign() method. If not, use the replace() method.

How to use assign() method in JavaScript?

The syntax is very simple:


location.assign(URL)

where URL is a required string.

Use it like this:


location.assign("https://www.yogeshchauhan.com");

How to use replace() method in JavaScript?

Same exact way as the assign() method.

The syntax is very simple:


location.replace(URL)

where URL is a required string.

Use it like this:


location.replace("https://www.yogeshchauhan.com");


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
What’s Interpolation in SCSS (Sass)?SCSSHow to get category name using post id in WordPress?WordPress5 Key Principles Of Good Website UsabilityUI/UXArbitrary Arguments in SCSS functionsSCSSHow to Add, Edit and Delete a Workflow in Etrieve?MiscellaneousHow to CREATE TABLE in SQL with and without using Another Table?SQL/MySQL