-
i have a html document with multiple named sections
eg: (called index.html)
Code:
<html>
<body>
Text here
<A NAME="aaa">aaa</A>
more text here
<A NAME="bbb">bbb</A>
even more here
<A NAME="ccc">ccc</A>
and still some text
<A NAME="ddd">ddd</A>
you get the point....
</body>
</html>
the problem is i need to send the browser to section ccc. however, the browser isnt open yet! (like if i make a link on the desktop to open index.html at section ccc.)
any ideas???
-
Just add "#xxxxx" to the end of the url, where xxxxx is the section name.
-
i tried it in netscape and it works but it doesnt work for IE?