I have a pocket pc phone – and I noticed some time ago that Google auto redirects me (when I'm on my phone) to the pda version of the page.
Being a lover of all things scripty – I've been looking for a way to do that too… Not that I've had a huge request for it – but just for the cool/why-not factor.
Every now and then I'll search around for it – but I still haven't found anything conclusive. I did however, come across this link this morning. which had the following code:
<script>
if (navigator.userAgent.indexOf("Windows CE") != -1)
{window.location='mindex.php'}
</script>
Even on that link, the poster said that it only works with pocket pc.
If anyone else has any ideas – I'd love to hear them!
Some generic browser sniffing can be found here: moock, dynamic drive, codehouse, webreference (but none of those focus on PDAs)
(and it's a little weird that almost a year ago today I was thinking about browser sniffing too… history repeats itself, I guess)
update: Doc had the answer – see the comments of this post! 😀