I am working with an iOS magazine framework (PugPig) which loads HTML documents into a WebKit powered view (a chromeless version of Mobile Safari).

I would like each 'page' to load either a portrait or landscape version of an <img/> depending on the orientation of the device. For various reasons it has to be an <img/> rather than a CSS background image, so media queries won't work. Because I am loading HTML from the local device, no web server stuff can be used either.

So I am guessing that JS is the way to go, but it would need to detect orientation change (or at least screen width) on the fly, without a page refresh, and I don't know if this is possible.

Not hugely familiar with JS hence no sample code (all my attempts so far are car crashes). Sorry.

Any help much appreciated.

link|improve this question

67% accept rate
feedback

2 Answers

Did you try jQuery mobile's orientationchange event? http://jquerymobile.com/demos/1.0/docs/api/events.html , http://www.roccles.com/?p=140

I've never done this, but it seems you could go this way.

link|improve this answer
Thanks, I'll look into that, will respond. – MightyMeta Jan 16 at 17:28
Thanks bububaba, but found a different solution. Sure I will need JQuery Mobile and what it can offer soon though! – MightyMeta Feb 4 at 16:32
feedback
up vote 0 down vote accepted

OK, found a solution using CSS Media Queries after all, by setting the display property of the img. Bit of a fudge, but fine for now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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