How to resolve jQuery conflict?
How to resolve jQuery conflict? I have a jQuery custom file which is disabling or conflicting my other jQuery file, please how do i resolve this. Please see below: My Custom file: $(".search").keyup(function() { var searchid = $(this).val(); var dataString = 'search='+ searchid; if(searchid!='') { $.ajax({ type: "POST", url: "search.php", data: dataString, cache: false, success: function(html) { $("#result").html(html).show(); } }); }return false; }); Conflicting Files: <script src="js/jquery.isotope.min.js"></script> <script src="js/nprogress.js"></script> I would be more than happy if this is resolved. Can't find any conflicting files. Are you sure? – Praveen Kumar Purushothaman May 4 '16 at 8:48 ...