pgGetStyle() and opacity

If you use pgGetStyle() and attempt to get opacity from an object that does not have opacity applied, the this function will return an empty string ( "" ).
Why does this behavior occur?
EXAMPLE:
NOTE: pgGetStyle() will usually return an empty string for objects that are fully opaque (opacity = 100).
Why does this behavior occur?
- HTML elements apply style.opacity to define the transparency level of an object. The range is 0 (full transparent; basically invisible to the eye) to 100 (full opaque).
- If an object has no style.opacity property set, the object is considered fully opaque and the opacity setting is null or empty.
- The PowerPac generally removes the opacity setting for objects with opacity=100 because this fixes a display issue in IE8 browsers where graphics and fonts may appear blotchy.
EXAMPLE:
NOTE: pgGetStyle() will usually return an empty string for objects that are fully opaque (opacity = 100).