The wii and JavaScript

By  on  

Last week, AJAXian featured an awesome article about serving wii-friendly websites. Accompanied with the article was a snippet of JavaScript that detects if the user is browsing using the wii's Opera browser, taken from the Ext framework:

var is_wii = navigator.userAgent.toLowerCase().indexOf('wii') > -1;

At this time, as wii's are still somewhat difficult to find, I feel safe in saying that non-wii-targeted websites need not put too much effort in catering to a wii audience. Being a wii owner, I can say that I find using its browser tedious and borderline worthless.

How long until we must format sites for the wii? Will we ever get to that point for websites other than niche video game sites? Please share your thoughts.

Recent Features

  • By
    CSS Gradients

    With CSS border-radius, I showed you how CSS can bridge the gap between design and development by adding rounded corners to elements.  CSS gradients are another step in that direction.  Now that CSS gradients are supported in Internet Explorer 8+, Firefox, Safari, and Chrome...

  • By
    Designing for Simplicity

    Before we get started, it's worth me spending a brief moment introducing myself to you. My name is Mark (or @integralist if Twitter happens to be your communication tool of choice) and I currently work for BBC News in London England as a principal engineer/tech...

Incredible Demos

  • By
    Retrieve Your Gmail Emails Using PHP and IMAP

    Grabbing emails from your Gmail account using PHP is probably easier than you think. Armed with PHP and its IMAP extension, you can retrieve emails from your Gmail account in no time! Just for fun, I'll be using the MooTools Fx.Accordion plugin...

  • By
    Facebook-Style Modal Box Using MooTools

    In my oh-so-humble opinion, Facebook's Modal box is the best modal box around. It's lightweight, subtle, and very stylish. I've taken Facebook's imagery and CSS and combined it with MooTools' awesome functionality to duplicate the effect. The Imagery Facebook uses a funky sprite for their modal...

Discussion

  1. Trying to support every new type of browser that hits the market is like going down a bottomless rabbit hole, IMHO. You’ll never catch up with the newcomers. Sooner or later all of these new devices are going to wise up and start following standard browser specs. Obviously certain phenomena will come along every now and then and will create enough user demand to support it (i.e., the iPhone), but those are the exception to the rule. I think we’re still waiting for some standard practices to emerge out of the onslaught of mobile devices.

  2. I’ve thought about trying to integrate browser detection in my site; I know how, just haven’t gotten around to it or narrowed down exactly what I want to do.

    I also own a Wii but never ever use the internet browser. I played around for maybe 2 minutes when I first downloaded it.

  3. @Will:
    Obviously, object detection is better, but there are circumstances where browser detection is the best way to go.

    @David:
    I can’t wait until we have a great solution for formatting pages for every resolution. It’s getting better but I think there is some brilliant idea waiting around for this.

  4. I am a big fan of writing web pages that support as many browsers as possible.
    My World of Solitaire website supports Opera, IE6, IE7, Firefox, Safari and even Konqueror.
    I don’t find it too hard to write sites that work in all of them. Once you learn a few things ‘not to do’ then you end up with mostly compatabile markup and code that only requires a few browser specific tweaks to be the same across all.

    I did some additional checking so that when it detects a Wii, it behaves differently in order to support the smaller resolution. I even went so far as to create a domain just for the Wii owners, wiisolitaire.com

    In the end it was maybe 4 to 8 hours of total work. How many users play on the Wii? A tiny fraction of my total visitors. Not all Wii’s are hooked up to the internet, those that are not all of them have a browser installed and those that have both probably don’t know about my site.

    Based on this I probably won’t expend more than a few hours on any website to make it Wii compatabile. Just not worth the time :)

  5. mike

    @Jeremy Martin: Nintendo should of went with a web browser already in place. By the way i entered this via wii browser> lol

  6. The Wii Browser is fine. You can surf fast and uncomplicated in the web and even the most of the flash videos.

    By the way: You can use any USB-Keyboard with the Wii (and in the Internet-Channel).

  7. Bob

    I think that method of detecting the wii browser is a little excessive. All you need to do is check to see if window.opera and opera.wiiremote exist.

    Plus, this doesn’t really affect the majority of sites, and would be a waste of time, since the Internet Channel browser was developed by Opera and they’re usually pretty good about standards. The only folks who should care are the guys developing javascript games. The wii javascript should allow for very nice games which would be controlled much more easily using the wii remote’s gestures, rather than the buttons on the remote or a usb keyboard.

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!