Good, I'll try to explain then I'm newbie . I need to use a new library, and
This code works perfectly when alone with this example:
< script src="//code.jquery.com/jquery-1.10.2.js">< /script >
<script>
meu codigo
< /script >
But if I need to add more "jquersxxx.js" all page java stops running, and in the "inspector console" I can see all sorts of errors like
form:699 Uncaught TypeError: $(...).minicolors is not a function
common-scripts.js?1455274914:87 Uncaught TypeError: $(...).niceScroll is not a function
sparkline-chart.js?1449132462:21 Uncaught TypeError: $(...).sparkline is not a function
Then searching on google friend, I found the following option:
< script src="//code.jquery.com/jquery-1.10.2.js" >
jQuery.noConflict();
meu código
< /script >
But the error continues, all page java simply stops working the same way ... I just do not know how to use this feature
Please can someone please show me how to avoid / adjust this? the examples of the net are always theoretical ... I've been looking for this for 3 days ...
obs: Examples of how to use are always welcome!