|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
forward backward button images
I found the script for forward backward browser-like buttons but I need to put in my own images - is there a way? here is the script:
<form> <input type="button" value="Back" onclick="history.back()"> <input type="button" value="Forward" onclick="history.forward()"> <input type="button" value="Reload" onclick="location.reload()"> </form> |
|
#2
|
||||
|
||||
|
Just use a normal IMG tag, and add the onClick event handlers
Code:
<img src="images/back.gif" onClick="history.back()" border=0> |
|
#3
|
|||
|
|||
|
Thanks Stumpy - so I guess that means I get rid of the form tags - - makes sense - I just didn't know enough to get around it.
![]() |
![]() |
| Viewing: Dev Articles Community Forums > Programming > JavaScript Development > forward backward button images |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|