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,824
  • 17
  • 99
  • 186
danday74
  • 52,471
  • 49
  • 232
  • 283

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
  • 665
  • 7
  • 38