Some of you may be aware of the fact that I am co-teaching a CSS-Workshop over at IWA/HWG. This week two students ran into exactly one and the same problem so that I had to find an explanation. So this entry is basically meant for them. […]
Script Code: JavaScript <br /> function getLayer(e)<br /> {<br /> var e = e || window.event;<br /> var x = e.clientX + parseInt(document.documentElement.scrollLeft, 10);<br /> var y = e.clientY + parseInt(document.documentElement.scrollTop, 10);<br /> var layer = document.getElementById(‘_layer_’);</p> <p> layer.style.display = ‘block’;<br /> layer.style.top = y-10;<br […]