“JQuery Redirecion” Respostas de código

JQuery Redirecion

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
FloatDev

JQuery redireciona para URL

$(location).attr('href', 'https://google.com');
Carnivorous Flamingo

Janela do jQuery redirecionando com cabeçalho

$(location).attr('href', 'www.google.co.in');
hsan8

Como posso redirecionar o usuário de uma página para outra usando jQuery ou JavaScript puro?

Solution #1
for Jquery you can use following code
$(location).prop('href', 'https://www.codegrepper.com/profile/shafeeque-ahmad')

Solution #2
for pure javascript you can use following solution

window.location.href='otherpage.com';
 window.location.assign('otherpage.com');
 //and...

 window.location.replace('otherpage.com');
shafeeque

Respostas semelhantes a “JQuery Redirecion”

Perguntas semelhantes a “JQuery Redirecion”

Mais respostas relacionadas para “JQuery Redirecion” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código