Hi,
Thanks for you test case but it doesn't quite match mine I believe - It would seem that that is scrolling an element within the iframe (fixed height with overflow scroll), which does prove that scrollTo works within the iframe - but I am trying to scroll the entire window (html, body). You might normally do this like so:
$("html, body").scrollTop($(element).offset().top);
but trying to do the same in hobs:
var $elementToScroll = hobs.find('html, body'), scrollAmount = hobs.find('.scrollToMe').offset().top; $elementToScroll.scrollTop(scrollAmount);
Doesn't seem to scroll the window at all.
Any ideas? Thanks!