Thanks. I need just one more clarification; If in the same .js file I have both jQuery code and Onsen code, shall I put the Onsen code inside the ons.ready
and the jQuery code inside the DOM ready event? that is
ons.ready(function() {
// Onsen JavaScript code
});
$(document).ready(function(){
// jQuery JavaScript code
});
Thanks