jQuery jQuery.support Property Last Updated : 11 Jul, 2023 Comments Improve Suggest changes Like Article Like Report The jQuery.support property in jQuery contains a collection of properties that are used to represent the different browser features or bugs. Syntax: jQuery.support.propvalueParameters: This property contains a single parameter propvalue: which is required. It is used to specify the function to test for. The tests included are: ajaxboxModelchangeBubblescheckClonecheckOncorscssFloathrefNormalizedhtmlSerializeleadingWhitespacenoCloneCheckednoCloneEventopacityoptDisabledoptSelectedscriptEval()stylesubmitBubblestbodyExample 1: This example uses jQuery.support property to text the browser to create an XMLHttpRequest object. html <!DOCTYPE html> <html> <head> <title> jQuery jQuery.support property </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> jQuery jQuery.support property</h2> <h3 style="color:lightgreen;"></h3> <!-- Script to use jQuery.support property --> <script> $(document).ready(function () { $("h3").html("GeeksForGeeks is best for" + " Computer Knowledge : " + jQuery.support.ajax); }); </script> </center> </body> </html> Output: Example 2: This example illustrates jQuery.support property with cors parameter value. html <!DOCTYPE html> <html> <head> <title> jQuery jQuery.support property </title> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script> <script> $(document).ready(function () { $.support.cors = false; $("h3").html(" Previous Example statement is not" + " correct : " + jQuery.support.cors); }); </script> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>jQuery jQuery.support property</h2> <h3 style="color:lightgreen;"></h3> </center> </body> </html> Output: Comment S shubhamsingh10 Follow Improve S shubhamsingh10 Follow Improve Article Tags : Web Technologies JQuery jQuery-Propertie Explore jQuery Tutorial 8 min read Getting Started with jQuery 4 min read jQuery Introduction 7 min read jQuery Syntax 2 min read jQuery CDN 4 min read jQuery SelectorsJQuery Selectors 5 min read jQuery * Selector 1 min read jQuery #id Selector 1 min read jQuery .class Selector 1 min read jQuery EventsjQuery Events 4 min read jQuery bind() Method 2 min read jQuery blur() Method 1 min read jQuery change() Method 2 min read jQuery EffectsjQuery animate() Method 2 min read jQuery clearQueue() Method 2 min read jQuery delay() Method 2 min read jQuery HTML/CSSjQuery addClass() Method 2 min read jQuery after() Method 1 min read jQuery append() Method 2 min read jQuery TraversingjQuery | Traversing 4 min read jQuery add() method 1 min read jQuery addBack() Method 2 min read Like