-4

I need to use both below files but just one of the can work if both of the use in pae

<script src="jquery.min.js"></script> 
<script src="jquery-1.min.js"></script>//just this work

Or if change order

<script src="jquery-1.min.js"></script> 
<script src="jquery.min.js"></script>//just this work

I use a drag and drop plugin , this need jquery.min.js and my theme need to jquery-1.min.js for be responsive

amin
  • 31
  • 7

1 Answers1

0

You should be able to do this when you use noConflict.

<!-- load jQuery-1 -->
<script type="text/javascript" src="jquery-1.min.js"></script>
<script type="text/javascript">
    var jQuery_1_min = $.noConflict(true);
</script>

<!-- load jQuery -->
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript">
    var jQuery_min = $.noConflict(true);
</script>

Now whenever you need one of these files you can do this.

//example
$jQuery_min('.selector').live('click', function(){  
    //do something  
});  

If it still wont work I dont know anymore... This is the way everybody does it. Quick google search.

Mike Lammers
  • 542
  • 9
  • 27