When calling an AJAX function with the POST method, there is no way for me to edit the GET fields of the URL because they are incorrectly passed as POST.
I would like to use this follow URL structure in my ajax requests: url: 'myfunction.php?fooBar' method: 'POST' But through firebug I can see that "myfunction.php" is being called and "fooBar" is instead passed as one of the post variables (with no value). Wrong! It's supposed to call the URL exactly as it's written: "myfunction.php?fooBar" and not strip away my GET variable. Obviously there is a workaround for this but I'm not happy with this structure hence my rant :)

