In this article I am going to tell you how to redirect a user from one webpage to another webpage using Jquery or Javascript. For this excercise, you can use any javascript editor
window.location.href = 'http://www.techstudy.org'
document.location.href = '/path-of-the-webpage'
window.location.replace('http://www.techstudy.org')
window.location.assign('http://www.techstudy.org')
$(location).attr('href','http://www.techstudy.org')
$(window).attr('location','http://www.techstudy.org')
$(location).prop('href', 'http://www.techstudy.org')
20 May 20190 2863 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap