Saturday, January 18, 2020

Install Jquery module in your IONIC 3 app

Install Jquery module in your IONIC-3 app,

npm install jquery --save
npm install @types/jquery
Import JQuery in HomePage.ts

import * as $ from "jquery";

Use $ to call jquery methods.


ngAfterViewInit(){
    $(document).ready(function(){
        alert('JQuery is working!!');
    });
}

No comments: