Hello awirick,
thank you for your quick reaction. I
guess your workaround should mostly work, but as you mentioned by
yourself it changes all '&_='. Even parts of the values (o.k.
'&_=' should be a rarely used string).
Today I've looked into the sourcecode
of jQuery-Core 1.4.2 and find out that the separator is hardcoded as
a string "&". If it would be possible to change it
anyway, it must be coded as a variable.
The code is mostly something like
this (to decide wich character should be appended):
- rquery.test(s.url) ? "&"
: "?"
I think it
should be possible to give jQuery a global parameter for handling GET-separators or a local parameter for the ajax()-methode (as part
of the options-object).
Unfortunately
I'm not familiar enough with the sourcecode to change it by myself (without damaging anything else).
Probably it will be changed in future
releases. Because the W3C recommends using ';' instead of '&' as
a
separator. Untill that I have to use your workaround.
Thanx & CU
hasenpfote