16 dicembre 2008Bypass z-index -1000 on Considero Alive MP3 Player – DNN

Truly an excellent module, but has a serious crossbrowsing bug in IE, thet can be solved adding a simple Javascript in MP3Player.ascx.

1) edit: yourwebsite\\pub\\DesktopModules\\Considero.DNN.AliveMP3Player\\MP3Player.ascx

2) add this Javascript at the end of the file:

<script language="javascript">
allDivs = document.getElementsByTagName(’div’);
for (var i=0; i < allDivs.length; i++) {
if (allDivs[i].id.indexOf(’player’) != -1) {
allDivs[i].style.zIndex = 10;
allDivs[i].style.position = "static";
}
}
</script>

3) refresh your page and enjoy! }; D

This will rewrite via Javascript the element.style { z-index: -1000; position:relative;} that make the module hide in IE!
Please, if you use this script, make a feedback to me. }: D

Lascia un commento