Wednesday, May 8, 2013

JQuery - How to veify JQuery was loadded on the web page



Use this code to verify JQuery was loadded property to your web page.
 

//
// See if the jQuery was loadded
if (jQuery) {  
    alert("jQuery is loaded");
} 
else {
    alert("jQuery is not loaded");
}
//
//

No comments:

Post a Comment