jquery conflict issue in php

Solution 1 :

    Open your jquery.js file and add this to the very bottom of it: jQuery.noConflict();
   
Solution 2 :

    jQuery(function($){
    // Use jQuery with $(...)

        $('#mySelector').hide();

        /* your jquery code....*/

    });

Solution 3 :

    var test = {};
    test.query = jQuery.noConflict( true );
   


EmoticonEmoticon