Showing posts with label ionic. Show all posts
Showing posts with label ionic. Show all posts

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!!');
    });
}

ionic installation

* ionic start myApp tabs --type ionic1  // for ionic 1   
ionic start myApp tabs --type ionic-angular // for ionic 2/3   
ionic start myApp tabs --type angular  // for ionic 4+

* npm install -g ionic
*https://ionicframework.com/getting-started/
ionic start myApp tabs
cd myApp
ionic serve