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!!');
});
}
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:
Post a Comment