I want to load a function when a page loads.So how to use native javascript onload function in ionic.Here is sample html page.
<ion-view title="Account" >
<ion-content class="has-header padding">
<h1>Account</h1>
<button id="bt">test</button>
</div>
</ion-content>
</ion-view>
here is my javascript file
function testload(){
alert("page loaded");
}
I want to load the this when page is loaded.How it possible in ionicframework?
What about using the controller associated with that view?
.controller('YourCtrl', function($scope, $stateParams, Something) {
alert("page loaded");
})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With