I was wondering if I could use any libraries I want like Node.JS, JQuery with LimeJS ? it is possible ?
Asked
Active
Viewed 268 times
1 Answers
0
It should be possible to use jQuery with it, though I have not tested. Make use of jQuery's noConflict function
Use it something like:
<script type="text/javascript" src="other_lib.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$.noConflict();
</script>

SpYk3HH
- 22,272
- 11
- 70
- 81
-
and with socket.IO any idea ? – W.W Nov 01 '12 at 17:51