Yes, I actually have tried that. It looks to me like the "?"
at the end of the url is acting as a cutoff.
As an example if I removed the "?" from your variable and
wrote it like this:
-
var
url
= $("#url-Select").val() + "query=" + $("#query-select").val();
My url looks like this: example-1.phpquery=query1
When i add the "?" back to the variable as you have it:
-
var
url
= $("#url-Select").val() + "?query=" + $("#query-select").val();
My
url looks like this: example-1.php?