is there any way of ignoring the options set with $.ajaxSetup for a specific request?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There isn’t any built-in functionality to do this. The very first thing any
$.ajax()call does is merge options with$.ajaxSettings, there’s no bypass for this.Any of the
$.ajax()shorthand methods (.load(),$.post(), etc) are still calling$.ajax()underneath, so they’re in the same boat.