I’m reading the jQuery load documentation and it mentions that I can use load to perform a GET request by passing in extra parameters as a string. My current code with my parameters as key/value pair is:
$("#output").load(
"server_output.html",
{
year: 2009,
country: "Canada"
}
);
The above works fine but it’s a post request. How can I modify the above to perform a GET request while still using load?
According to the documentation you linked:
So the simple solution is to convert your object to a string before passing it to the function. Unfortunately, the documentation doesn’t specify the format the string should be in, but I would guess it would be the same as if you were generating the GET request manually.