Hi ,
Javascript What is the syntax for zindex
i tried like this
document.getElementById('iframe_div1').style.zIndex =2000;
document.getElementById('iframe_div1').style.z-index =2000;
not working even its not showed the error also
Also tell for jquery...
this is my snippet working fine in html but i want to set this css property in jquery or javascript...the top/position attributes are not working...
z-index:1200px; top:450px; position:absolute; right:300px;
document.getElementById('iframe_div1').style.display='block';
$("#iframe_div1").css("z-index", "500");
$("#iframe_div1").css("right", "300");
$("#iframe_div1").css("top", "450");
document.getElementById('iframe_div1').style.position = "absolute";
This is snippet not as perfect as i expect..i want to move my div center of the page..but it just moving my div bottom of the page