Skip to content Skip to sidebar Skip to footer

Why Isn't Enqueued Script In Wordpress Working?

I have a Wordpress childtheme using a functions.php that contains the following:

Solution 1:

jQuery in WordPress runs in noConflict mode which means the global $ shortcut for jQuery isn't available. Replace your code with the following:

jQuery(document).ready(function($) {
    alert( 'ready!' );
});

Inside the document ready wrapper the $ can be used as an alias for jQuery.

Post a Comment for "Why Isn't Enqueued Script In Wordpress Working?"