6
Cambiar URL y redirigir usando jQuery
Tengo un código como este, <form id="abc"> <input type="text" id="txt" /> </form> y ahora quiero redirigir así, var temp = $("#txt").val(); url = "http://example.com/" + temp; window.location.replace(url); // or window.location(url); ¿Hay alguna forma en jQuery para resolver esto? Todavía me deja tener url = http://example.com.
132
javascript
jquery
url
redirect