How to check if JQuery library is loaded

H

How Can We Help?

How to check if JQuery library is loaded

Use the following code withing your JavaScript tags 

if(jQuery){  
    alert('jQuery loaded');  
}else{
    alert('jQuery not loaded');
}

This method can be used to check if any other JavaScript variable or function exists or is set and thus is not limited to jQuery alone.

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me