Showing posts with label ionic 3. Show all posts
Showing posts with label ionic 3. 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!!');
    });
}

New ionic 3 project startup



New ionic 3 project
https://ionicframework.com/docs/cli/commands/start


ionic start
ionic start --list
ionic start myApp
ionic start myApp blank
ionic start myApp tabs --cordova
ionic start myApp tabs --capacitor
ionic start myApp super --type=ionic-angular
ionic start myApp blank --type=ionic1
ionic start cordovaApp tabs --cordova
ionic start "My App" blank
ionic start "Conference App" https://github.com/ionic-team/ionic-conference-app
Inputs