To do a HTTP redirect using Javascript or jQuery you can use the window.location.href or the window.location.replace property.
Sample Javascript href
window.location.replace("https://codesnippets.fesslersoft.de");
Sample Javascript replace
window.location.href = "https://codesnippets.fesslersoft.de";
difference of these two
you should use replace if you want to create a http redirect and href if you want to simulate a click.
You can also do this in jQuery but i personally prefer the methods shown above because there is no need to use jQuery for a http redirect.
Sample jQuery
var newUrl = "https://codesnippets.fesslersoft.de"; $(location).attr('href',newUrl);
for more information see W3Schools: Location href Property, Location replace() Method
RT @CodeSnippetsNET: HTTP redirect using JS or jQuery: http://t.co/gQcblS8lDZ #js #jquery #javascript #html