View Single Post
09-13-2008, 02:05 PM
#4
Normo is offline Normo
Normo's Avatar
Status: Member
Join date: Aug 2008
Location: Hampshire, UK
Expertise:
Software:
 
Posts: 202
iTrader: 1 / 100%
 

Normo is on a distinguished road

  Old

Having a few problems on the backstep part of the same code:
Code:
function Backstep() {
 var back = document.getElementById("background");
 if (back.src != "images/bannerthin.png"){
  back.src = "images/bannerthin.png";
}};
Code:
<a href="#" id="1" onmouseover="ShowImg('text')" onmouseout="Backstep()">1</a>
I'm not great shakes at Javascript, just getting to grips with it really. :P
Any help is appreciated.