I'm having a jQuery conflict. I use an Admin, where it has several features ready. I needed to add an autocomplete
When I finished I realized that the menu was no longer open ... rsrs
This is from the menu and all Admin
<script src="assets/js/jquery-ui-1.10.3.custom.min.js"></script>
This is autocomplete
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
Autocompletecode
$(function(){varavailableTags=[<?phpdo{?>{label:'<?phpecho$row_rsOrigem['rsocial'];?>-<?phpecho$row_rsOrigem['cpf_cnpj'];?>',value:'<?phpecho$row_rsOrigem['cpf_cnpj'];?>'},<?php}while($row_rsOrigem=mysql_fetch_assoc($rsOrigem));?>];$(".origemCPF").autocomplete({
source: availableTags
});
});
Is it possible to use both without having problems between them?