I need to encode some strings to add to a URL.
My string contains multiple words: "abc def hij" (i.e. not three separate strings but a single string with 3 words in it).
In JavaScript or jQuery, how do you convert a string like that ("abc def hij") into the encoded format: "abc+def+hij"?