What are some tips and tricks when developing web applications using the Series 40 Ovi browser platform?
Nokia S40 Ovi browser web application tips and tricks
4k views Asked by ariefbayu At
2
What are some tips and tricks when developing web applications using the Series 40 Ovi browser platform?
For every code that is run on
function()
, the Ovi browser will forward it to server to interpret it. So, make sure you do a minimal function() call. If you have to do it, try to usemwl.timer()
to add a nice loading effect.For example:
In
index.html
:In
code.js
:You can optimize it to:
In
index.html
:In
code.js
: