Uncaught TypeError: $.ajaxSetup is not a function

Created at 06-Aug-2021 , By samar

Uncaught TypeError: $.ajaxSetup is not a function

In this session, we are going to try to solve the "Uncaught TypeError: $.ajaxSetup is not a function" puzzle by using the computer language.

Sometimes you get the error Uncaught TypeError: $.ajaxSetup is not a function in your browser console while calling $.ajaxSetup() method because of slim (version) of jQuery. You have to use jquery.min.js instead of slim.min.js. JQuery with slim version does not contains the $.ajaxSetup() method in jQuery.
  • Use jquery.min.js instead of jquery.slim.min.js

    <!-- Use -->
    <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
    <!-- Instead of -->
    <!-- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> -->
    

    Jquery slim (version) does not contain the following method, jQuery.fn.extend ,jquery.fn.load, jquery.each, jQuery.expr.filters.animated
    ajax settings like jQuery.ajaxSettings.xhr, jQuery.ajaxPrefilter, jQuery.ajaxSetup, jQuery.ajaxPrefilter, jQuery.ajaxTransport, jQuery.ajaxSetup, xml parsing like jQuery.parseXML, animation effects like jQuery.easing, jQuery.Animation, jQuery.speedz. 

    You have to use jquery.min.js instead of jquery.slim.min.js in your html.

Back to code snippet queries related jquery

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.