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;
It does not work, it does not even show an error.
This is my fragment. It works fine in HTML, but I want to set this CSS property in jQuery or JavaScript. The top / position attributes do not work ...
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 piece is not as perfect as I expect. I want to move my center div of the page, but it just moves my div to the bottom of the page.
source share