What are some tips and tricks when developing web applications using the Series 40 Ovi browser platform?

link|improve this question

can anyone mark this question as community wiki? – silent May 27 '11 at 9:19
1  
Or vote to close (as it's not a programming 'question') – KevinDTimm May 27 '11 at 9:30
It's not, but it's related to programming. – silent May 27 '11 at 9:35
3  
@silent - what is the question? Community wiki is a destination, not a starting point. – KevinDTimm May 27 '11 at 9:39
Hello and welcome to Stack Overflow! Note that we have a nice FAQ. To quote: "What kind of questions should I not ask here? You should only ask practical, answerable questions based on actual problems that you face. Chatty, open-ended questions diminish the usefulness of our site and push other questions off the front page." "Tips and tricks about X" is not an answerable question. – Piskvor May 27 '11 at 10:46
show 1 more comment
feedback

closed as off topic by KevinDTimm, ChrisF, Barry, Piskvor, Graviton May 27 '11 at 11:19

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 1 down vote accepted

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 use mwl.timer() to add a nice loading effect.

For example:

In index.html:

<div onclick="loadNews()">load news</div>

In code.js:

function loadNews()
{
    mwl.addClass('#navigation', 'hide');
    mwl.addClass('#container', 'hide');
    mwl.removeClass('#loader', 'hide');
    //Ajax call here.
}

You can optimize it to:

In index.html:

<div onclick="mwl.addClass('#navigation', 'hide');mwl.addClass('#container', 'hide');mwl.removeClass('#loader', 'hide');mwl.timer('loadNewsTimer', 10, 1, 'loadNews()')">load news</div>

In code.js:

function loadNews()
{
    //Ajax call here.
}
link|improve this answer
feedback

When adding inline JavaScript code, you should wrap your code in " (double-quote). It runs on the emulator, but will fail on the device.

For example:

<div id='runner' onclick="mwl.addClass('#header', 'hide');mwl.removeClass('#container', 'hide');">command</a>
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.