Difference between revisions of "Nintendo DSi Browser"
Jump to navigation
Jump to search
(→Tips) |
(→Tips) |
||
Line 20: | Line 20: | ||
window.onload=function() | window.onload=function() | ||
{ | { | ||
− | if (navigator.userAgent.indexOf( | + | if (navigator.userAgent.indexOf('Nintendo DSi') == -1) //If the UserAgent is not "Nintendo DSi" |
{ | { | ||
− | location.replace( | + | location.replace('http://www.dsibrew.org'); //Redirect to an other page |
} | } | ||
} | } | ||
</script> | </script> |
Revision as of 09:53, 6 April 2009
This article is a stub. You can help DSiBrew by expanding it. |
Browse the web with the second edition of the Opera browser for DS. (Flash and things not supported)
Sample DSi Browser User Agent Strings:
- Opera/9.50 (Nintendo DSi; Opera/483; U; en-US)
- Opera/9.50 (Nintendo DSi; Opera/483; U; en-GB)
Tips
- To active the vertical mode automatically, add this tag between <head></head> :
<meta name="viewport" content="width=240">
You can test that with a demo page on my website : here
- To detect if the user agent is Nintendo DSi Browser :
<script type="text/javascript"> window.onload=function() { if (navigator.userAgent.indexOf('Nintendo DSi') == -1) //If the UserAgent is not "Nintendo DSi" { location.replace('http://www.dsibrew.org'); //Redirect to an other page } } </script>