if I send "#top" to the IWebBrowser2::Navigate, it doesn't work
IWebBrowser2::Navigate2 doesn't seem to handle it either
the IWebBrowser2::LocationURL gives me http:/// for the dynamically created
content
any idea?
thx in adv.
A.
Can't you just do
body.scrollTop = 0;
?
--
With best wishes,
Igor Tandetnik
"For every complex problem, there is a solution that is simple, neat,
and wrong." H.L. Mencken
oh... sorry... I should have given a better example... ;)
I would like to go to any place marked with <a name='whatever'>
so far I see no hope while reading the answers on groups.google.com
- there's some potential solution mentioned in
http://groups.google.com/groups?th=57233dbedc79cdbc
but I couldn't find it in google archives...
still... maybe some other idea?
A.
How about this then:
document.all.tags("a").item("whatever").scrollIntoView();
whoaw... that's what I call real hack
gonna try this one...
thx a lot
=o)
A.