Karim
|
| Posted: 04/15/2003, 10:02 AM |
|
Does anyone know what the steps are or if there is any article where I can redirect to another page when I click a button using CCS.
Thanks,
Karim
|
|
|
 |
RonB
|
| Posted: 04/15/2003, 1:26 PM |
|
insert a plain button in html:
<input id="Button1" type="button" value="Button1" name="Button1">
now add javascripts onclick code:
<input id="Button1" type="button" value="Button1" name="Button1" onclick="document.location.href='./somepage.php'">
RonB
|
|
|
 |
Karim
|
| Posted: 04/16/2003, 8:31 AM |
|
Thanks, I will try that.
Karim
|
|
|
 |
|