I have to make a p element disappear on click of a button while a div element slides over it. If the p element is already invisible and the div is already over it, then on click of the button the p should turn back visible but after 1 sec while the div slides off it.
The first portion works fine, in the second case instead doesn't work the setTimeout function used on the visibility property of p.
Here's the code:
function slide_wiki(){
var wiki=document.getElementById('wiki_bar');
var p_vita=document.getElementById('vita');
var width=wiki.style.width;
slide(wiki, 100);
if(width!='0%'){
setTimeout(function(){p_vita.style.visibility='visible'}, 1000);
wiki.style.borderRight='1px solid #E0E0E0';
}else{
p_vita.style.visibility='hidden';
setTimeout(function(){
wiki.style.borderRight='0px solid white';
}, 900);
}
}
I created a jsFiddle as suggested, but for some reason the slide function doesn't work at all, still the css and javascript needed is there so it should help anyways. http://jsfiddle.net/bigcola317/GRs3V/5/
displayproperties? – starbeamrainbowlabs Jul 5 '12 at 17:40