Hi I am trying to redirect to a URL on a form submission. Here's the page of the form:
http://thesomerset.com/test.php
I am trying to redirect on submission to this page:
http://thesomerset.com/resort.php
<script>
function submitme() {
window.open("http://www.thenavisway.com/reach/WebServicePost/SubscribeToList.aspx#arr0=" + "&account=15118&password=ddwj49kkyarqdhh6yayq&SubscriptionLists=Website"
+ $("#email").val() + $("#firstname").val() + $("#lastname").val(), "_blank");
}
</script>