I have some code that modifies a <div> element. I did a view source before and after the DOM element was modified. And I saw with my two eyes that the DOM was modified as I wanted. When I diff the sources, they are identical. I guess when doing View Source it will show the page as it was downloaded from the web and not after the modification. Is there a way that I can see the page after the modifications? I can view the DOM in FF using Firebug but this doesn't help me in IE.
Here are the particulars of why this is important:
Call this one line of code to change the opacity of a div element.
AjaxControlToolkit.Animation.FadeOutAnimation.play($get(idOfDomElement), 15, 30, .2, 1,
null);
It works in IE, FF, and Opera fine. In FF I can see that what it does is to change the style.opacity property of the div. In IE, the element fades visually but the style.opacity is not modified. In order to write unit tests for this, I need to know what changed.
Thanks!