| setting CSS via JS
|
sssweb

msg:4394175 | 10:10 pm on Dec 4, 2011 (gmt 0) | I can't get the following portion of my javascript to set CSS opacity: <script language="JavaScript"> ... var trans = 0.5; elementid.opacity = trans; </script> This doesn't work either: document.getElementById("elementid").opacity = trans;
|
penders

msg:4394193 | 11:21 pm on Dec 4, 2011 (gmt 0) | document.getElementById("elementid").style.opacity = trans; You will also need to set the filter property if you intend to support IE8 and below... document.getElementById("elementid").style.filter = 'alpha(opacity=' + trans*100 + ')';
|
sssweb

msg:4394367 | 12:49 pm on Dec 5, 2011 (gmt 0) | Thanks penders, that was it. Yes, I have the IE8 code too; that came with the script and was working fine, but I couldn't convert it for other browsers. It's in a slightly different format: elementid.filters( "alpha" ).opacity = 50;
|
|
|