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?
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?
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>