2

I was wondering if I could use any libraries I want like Node.JS, JQuery with LimeJS ? it is possible ?

W.W
  • 109
  • 1
  • 10

1 Answers1

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