How to use JQuery in Angular?

Luka Onikadze
3 min readMay 15, 2020
Image by Momentmal from Pixabay

Using Angular in JQuery is not the best practice but if you want to, or have to, I’ll show how to do it in a few simple steps

Installation

First, install the JQuery library.

npm install jquery --save

We need to install JQuery definition file also, to get IntelliSense support

npm install @types/jquery…

--

--