I am using Ion-RangeSlider in angular9 application. The issue i am facing is when i am trying to use "$" from jquery it is giving me error as "Cannot find name '$'. Do you need to install type definitions for jQuery? Try npm i @types/jquery and then add jquery to the types field in your tsconfig."
I have already installed @types/jquery and the jquery version i am using is "jquery": "^3.5.1" and "@types/jquery": "^3.5.0"
I am using Ion-RangeSlider in angular9 application. The issue i am facing is when i am trying to use "$" from jquery it is giving me error as "Cannot find name '$'. Do you need to install type definitions for jQuery? Try
npm i @types/jquery
and then addjquery
to the types field in your tsconfig."I have already installed @types/jquery and the jquery version i am using is "jquery": "^3.5.1" and "@types/jquery": "^3.5.0"
Code: ($('.js-range-slider')).ionRangeSlider({ ...... });
Can you please let me know why i am getting this issue?