SyntaxFix
Write A Post
Hire A Developer
Questions
For send parameters in url in POST method You can simply append it to url like this:
POST
$.ajax({ type: 'POST', url: 'superman?' + jQuery.param({ f1: "hello1", f2 : "hello2"}), // ... });