Search code examples
ionic2slick.js

Ionic2 Jquery is not defined


I have imported following line in .ts file

import * as $ from "jquery";

Before that I have installed it with

npm install jquery --save

But it's returning error

jQuery is not defined


Solution

  • the correct way to import this as i am using this is.

    import $ from 'jquery';
    

    then to use this

    public test(){
    $('#test').height('100px');
    }
    

    html

     <button id=test ion-button (tap)="test()" block>TEST</button>