The Grayscale effect is cool on logout...if you have IE. Can we make the Function Firefox and Opera friendly? (Function is in the vbulletin_global.js file)
Code:
[SIZE=2][SIZE=2]Function log_out(confirmation_message) { var ht = document.getElementsByTagName("body")[0];[/SIZE][/SIZE] [SIZE=2][SIZE=2] ht.style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)"; ht.style.MozOpacity = '0.3'; ht.style.opacity = '0.3';[/SIZE][/SIZE] [SIZE=2][SIZE=2] If (confirm(confirmation_message)) { Return true; } Else { ht.style.filter = ""; ht.style.MozOpacity = '1'; ht.style.opacity = '1';[/SIZE][/SIZE] [SIZE=2][SIZE=2] Return false; } }[/SIZE] [/SIZE]
Comment