Skip to content Skip to sidebar Skip to footer

How Do I Fix An Ajax Conflict With JQuery Drag N Drop Ranking?

I have two sets of code Loadmore Button And Jqueury Drag N Drop but they do not work as one. How can I merge them together to function as one code? Here is the Problem:

Solution 1:

Look here

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"
    type="text/javascript">

and

<script type="text/javascript" src="jquery-1.3.2.min.js"></script>

are same (jQuery file)

So use only one

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"
    type="text/javascript">

Post a Comment for "How Do I Fix An Ajax Conflict With JQuery Drag N Drop Ranking?"