Checks whether jQuery. js has loaded judgment code.

Source: Internet
Author: User

Of course, this method is not limited to jQuery detection, and is common to any Javascript variables or functions.

After the current webpage loads jQuery, jQuery () or $ () functions will be defined, so there are two methods to check whether jQuery has been loaded:
Method 1:
Copy codeThe Code is as follows:
If (jQuery ){
// JQuery loaded
} Else {
// JQuery is not loaded
}


Method 2:
Copy codeThe Code is as follows:
If (typeof jQuery = 'undefined '){
// JQuery is not loaded
} Else {
// JQuery loaded
}

Note:
We have checked whether the jQuery function has been defined. This is a safe and reliable method, because when you load jQuery. after js, prototype may be loaded again. js or mootools. js and so on, where the $ () function may be redefined, and it will be inaccurate to check whether the $ () function exists.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.