I have my div element which has a className.
i want to grab the display property for this div at runtime in firefox.
i have tried something like this with no luck in firefox or IE; any other ideas
var divObject = document.getElementById("divObjectId");
divObject.style.getExpression("display");
in ff i get an exception "TypeError: divObject.style.getExpression("display"); is not a function"
Thanks
sj