views:

71

answers:

1

This doesn't seem to work in jqTouch or iUI. But I know it's possible because it works on my Droid when I go to deviantart.com . Anyone know how to do it?

Thanks!

A: 

Ok, I'm gonna answer my own question here. I added this bit of jQuery...

$(document).ready(function() { setTimeout(scrollTo,200,0,1) });

The timeout appears to be necessary. On my Droid, the document is not yet ready to scroll when the DOMContentLoaded event is fired.

Jonathan Hawkes