Click to See Complete Forum and Search --> : Make it your default homepage


Cowboy
03-18-2003, 11:04 AM
<a href="http:\\www.xxxxxx.com" onClick="this.style.behavior='url#default#homepage)';
this.setHomePage('http://www.11111.com');"
>Make it your default home page</a>

I used this code to create a default homepage, but I do not want it to go anywhere after one created the default homepage.

I am stuck with a href code because I do not know how I can get around 'onclick' code without using a href or button.

I would like to use the text "Make it your default homepage " in text to create a default homepage and that it will not go anywhere after that.

Many thanks in advance.

Jim

Nedals
03-18-2003, 12:05 PM
Try this..

<a href="http:\\www.xxxxxx.com" onClick="this.style.behavior='url#default#homepage)';
this.setHomePage('http://www.11111.com'); return false">

Cowboy
03-18-2003, 01:44 PM
'Return false' code is not working...

AdamGundry
03-18-2003, 02:41 PM
This, I think...

<a href="#" onClick="this.setHomePage('http://www.example.com');"
>Make it your default home page</a>

Adam

Cowboy
03-18-2003, 03:04 PM
It works with "#".

Thanks, Adam and Nedals.

Jim