When I do the following:
$(selector).attr("src", url_base + "?" + $.params(myParams));
a GET is emitted, which, for "small" url's is fine. However, mine can become large enough to exceed a proxy's or firewall's url length limit.
Is there a way to get the same result but in such a way that the underlying HTTP request is a POST rather than a GET?
Cheers,
Nick