Forum Moderators: open

Message Too Old, No Replies

setting CSS via JS

         

sssweb

10:10 pm on Dec 4, 2011 (gmt 0)

10+ Year Member



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

11:21 pm on Dec 4, 2011 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



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

12:49 pm on Dec 5, 2011 (gmt 0)

10+ Year Member



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;