I tried to make pop up window for login and it not work in IE or Mozilla Firefox. I used JS, html and CSS...
<a href="javascript:void(0)" class="hiddenlink" onclick="toggle_visibility('logBox');">Log In</a>
there is JS
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
and there is css
.boxPosition{
position: absolute;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.7);
display: none;
width: 100%;
height: 100%;
}
I don't know where is problem...
Thanks for any help