Essentially I want to use a button to bring a div to the front using the CSS z-index and then when pressing the button again I want it to revert back to its original state.
This is the code I have got so far and it will happily change it first time round but it wont revert it back.
function thumbnail(){
if (document.getElementById("div").style.zIndex= -3){
document.getElementById("div").style.zIndex= -2;
}
if (document.getElementById("div").style.zIndex= -2){
document.getElementById("div").style.zIndex= -3;
}
}
=for assignment,==for comparison – onon15 Dec 16 '12 at 13:00ifneeds to beelseinstead! Otherwise both blocks always execute sequentially. As soon as the first changes to-2, the second will change it immediately back to-3. – Michael Berkowski Dec 16 '12 at 13:00if (...zIndex == -3) { ...zIndex = -2; }Note the==in theif()condition. – Michael Berkowski Dec 16 '12 at 13:03