How to get the iPad viewport size with jQuery

Detecting the viewport size of an Apple iPad is very easy with jQuery. You just have to use the following code example:

1
2
3
4
5
6
7
8
    <script src="./js/jquery.js"></script>
    <script type="text/javascript">
      var width = $(window).width(); 
      var height = $(window).height(); 
      var pre = document.createElement('pre');
      pre.textContent = 'Viewport: '+width+'x'+height+' pixels';
      document.body.appendChild(pre);
    </script>

The viewport for an iPad in landscape mode (with address bar) is 1024×690 pixels.
The viewport for an iPad in portrait mode (with address bar) is 768×946 pixels.
The viewport for an iPad in portrait mode (with address bar and debug console) is 768×896 pixels.

If you want to hide the address bar in portrait mode then you have to add the website to your homescreen and their must be this meta tag in your website’s header:

<meta name="apple-mobile-web-app-capable" content="yes" />

The viewport for a fullscreen portrait mode is then 768×1004 pixels.
The resolutions are based on the following setting:

<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />

If you do not have this setting (or if you use different values for it), then the viewport will be lager or even smaller.

Google Android unterstützt Adobe Flash

Google Android Version 2.2 unterstützt neben HTML 5 auch vollständig das Multimedia-Format Flash. Mit dem Adobe Flash Player 10.1 können sogar Android Handys mit Version 2.1 interaktive Flash-Webseiten darstellen.

Das Apple iPhone OS 3.2 kann dagegen immer noch kein Flash anzeigen:

Die U-Bahn wird zur iBahn

Wer aktuell am Alexanderplatz in Berlin mit der U-Bahn fährt, wird bemerkt haben, dass es dort nur noch weiße Werbeplakate gibt. Pünktlich zum Weihnachtsgeschäft hat sich Apple nämlich alle Werbeanzeigen gemietet und sogar noch einige neue Werbeflächen hinzugefügt. Die Fahrgäste sehen dadurch jetzt außer den öffentlichen Verkehrsmitteln auch noch jede Menge iPods.

Ein schöner Gag, den auch die Pixelartisten bemerkt haben.

Apple iPod touch Werbung am Alexanderplatz, Berlin
Apple iPod touch Werbung am Alexanderplatz, Berlin