0

Angular1 has jQuery lite built in but I am not sure about Angular2.

Does anyone know if Angular2 has jQuery built in or do I need to bring it in myself?

If it is built in, which version, jQuery lite or the full version?

halfer
  • 19,471
  • 17
  • 87
  • 173
danday74
  • 45,909
  • 39
  • 198
  • 245

1 Answers1

1

Install jquery via typings

typings install dt~jquery --global --save

Then you can declare $ like below

declare var $:JQueryStatic;

Follow This plunker for example

index.html

 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
Rohit Vinay
  • 655
  • 7
  • 37