Back Link: As An ImageThe back link script can also create a back link using an image. Set thetype property to image and the src property to the source for the image. You can also optionally set the width and height properties. The
text property is used as the alternate text for the image. For example, this code creates a back link image with a
source of getback.gif,
text of get back,
width of 100 and
height of 17.
<SCRIPT TYPE="text/javascript"> <!-- var gb = new backlink(); gb.type = "image"; gb.src = "getback.gif"; gb.text = "get back"; gb.width = 100; gb.height = 17; gb.write(); //--> </SCRIPT> |