Resolving jQuery Conflicts

Resolving jQuery Conflicts in jQuery Plugins

<?php $(document).ready(function(){
// insert coding here
}); ?>

Change the line using unique variables:

<?php jQuery(document).ready(function(){
// insert coding here
}); ?>

Go back to top