views:

39

answers:

1

Hi,

I have a strange problem.

I'm using Protoype to show a "<ul></ul>" markup with Show() method (Toggle() too).

When I click on my button to display my "<ul></ul>", Internet Explorer display it on the screen, but in the source code, the "display:none" is always present O_o

And my flash player doesn't work because of this.

But on other browers, it works

You can see it here (click on "Voir la réponse vidéo")

http://www.snaaf.fr/question

+2  A: 

This is expected behaviour. The source code is the source code, not a live representation of the DOM. If you want that, use a DOM inspector.

David Dorward