Reply To: Jquery problems

Home Forums Support Jquery problems Reply To: Jquery problems

Home Forums Support Jquery problems Reply To: Jquery problems

#72621
Tom
Lead Developer
Lead Developer

In order for jQuery to work with WordPress, you need to change your very first line from:

$(document).ready(function() {

to:

jQuery(document).ready(function($) {

WordPress needs you to specify that you’re using jQuery, as it supports multiple other libraries as well.

Let me know if that fixes it 🙂