I've got form information captured and have built a URL to another website. How do I actually send that from javascript.
[theotherwebsiteUrl]?parama=A¶mb=B¶mc=C
This is the format I have built as a string into a variable called body
.
I want 'some JS function' to send the contents of body
to [theotherwebsite]
.
Their server is geared to accept this string and parse if from my website. I just don't know what function to use to ship off an entire url string variables and all now that I concatenated the string to their format.
Thank you!