Ich habe einen Code wie diesen, <form id="abc"> <input type="text" id="txt" /> </form> und jetzt möchte ich so umleiten, var temp = $("#txt").val(); url = "http://example.com/" + temp; window.location.replace(url); // or window.location(url); Gibt es in jQuery überhaupt eine...