vote up 0 vote down star

We are developing a web application that should be accessible from a mobile phone.

It involves a simple text-only tree catalog.

To avoid extra round-trips to the server to expand the tree items as you click on them, I decided to use WML.

It allows preloading multiple <card>'s in one document and fast browsing between these <card>'s.

However, iPhone does not support WML at all and other mobile browsers have multiple issues with it.

Is there a technology that allows loading multiple pages into iPhone's browser and browsing between them without extra round-trips to the server?

flag

67% accept rate

5 Answers

vote up 2 vote down check

It's not exactly the same as WML, but Joe Hewitt's iUI was developed on the very same idea of preloading different <div>'s corresponding to different pages, and facilitate navigation between them.

Here is an example:

http://iui.googlecode.com/svn/tags/REL-current/samples/music.html

Look at the source code in order to see how each <div> or <ul> is actually a different page. You can also dynamically add pages using AJAX.

link|flag
Looks nice! Trying it out... – Quassnoi Jun 6 at 7:20
Seems to be exactly what I was looking for, thanks! – Quassnoi Jun 7 at 22:40
vote up 0 vote down

I think one trick is to load a page with 320px wide divs and have it scroll horizontally via Javascript. You can make the iPhone hide the horizontall scrollbars.

link|flag
vote up 0 vote down

Would a Tiddlywiki work?

As far as I know, you can use the 'tiddlers' aspect of a tiddlywiki to show/hide small amounts of web content without having to make trips to the server?

link|flag
@Dipak: "TiddlyWiki is a wiki-modeled client-side single-page application". Don't see how can it help me. Could you please be more verbose? – Quassnoi Jun 5 at 15:18
vote up 0 vote down

If you are developing the site only for the iPhone I would recommend the excellent jQTouch plugin for jQuery. It allows you to store pages in seperate div tags and then navigate between them without refreshing the page.

link|flag
vote up 0 vote down

I can't vote yet, but I did check out link text and it is awesome. I was working on something like that for screen prototyping, but I did not put 2-and-2 together to see its practical utility.

Clarification on the mis-formed link: I was referring to the iUi linkage for the CSS that creates div sections with the appropriate artwork to look as if the web content is generated by the iPhone Application. This is a great complement to an end-to-end solution.

I vote with both thumbs up if I could ...

I will also check out the jQTouch plugin jQuery as that may be a more proprietary way to go for licensed content.

link|flag
Your link points to this very question. Which answer is what you wanted to vote? – Quassnoi Oct 11 at 17:50

Your Answer

Get an OpenID
or

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