ajax POST being sent as GET
I am sending an ajax POST request like this:
- $.ajax({
- url: url,
- method: 'POST',
- dataType: "json",
- data: {
- recipe: recpie
- }
- })
But the request is being sent as a GET:
-
-
-
-
Any ideas as to why this is happening and how I can get it sent it as a POST?