ID:787336
 
(See the best response by Albro1.)
Is there a way to href your way to the bottom of browser? Normally I would use anchor stuff but that's not going to work unless I'm not looking at Topic() the right way. If not, how would it be done?
I am not sure what you mean?

If it's what I am thinking like those ( TOP ) buttons that move the screen all the way to the top?

If it is you can do this with just CSS + html
It is exactly like that. Normally I'd do this.

a name = "thing"
a href=?"page.html#thing"

But since Topic() hostages my href, I have to find a way around href (or a way to use it within it) to use tags like that.
Best response
The only way I know is anchors.
Tested this in DM, and it worked:
var/html = {"
<a href="#test">Test</a>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<a name="test">Test</a>
"}

mob/Login()
..()
src << browse(html)


So I guess for internal links like that, it's fine. Linking to other pages requires Topic().
You should still be able to use the # tag in a href as # should point to nothing.

Or do it with Javascript/Jquery. - last resort.
Ah, thanks Albro! That is very useful information.
In response to Albro1
Albro1 wrote:
The only way I know is anchors.
Tested this in DM, and it worked:
> var/html = {"
> <a href="#test">Test</a>
> <br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
> <a name="test">Test</a>
> "}

> mob/Login()
> ..()
> src << browse(html)
>

So I guess for internal links like that, it's fine. Linking to other pages requires Topic().

Damn you :) I was to slow my test looks almost identical :)
In response to A.T.H.K
A.T.H.K wrote:
Damn you :) I was to slow my test looks almost identical :)

That's the advantage of having an easily accessible test environment. ;)