Forum Moderators: not2easy

Message Too Old, No Replies

<display="none"> not working in IE 7 Beta 2 (English)

CSS problem in AJAX application

         

Chris82

10:08 pm on Jun 13, 2006 (gmt 0)

10+ Year Member



IE 6 and Firefox use the display="none" from my source without problems but IE 7 simply ignores the attribute although when I write e.g. display="block" it is working just not the way it should of course. So is display="none" not working in IE 7 Beta 2? You can check it out at <edited>. The menu at the bottom should have the text not displayed of the current opened box when you open another. In Firefox and IE 6 this works fine as I said.

[edited by: tedster at 11:07 pm (utc) on June 13, 2006]

Fotiman

10:13 pm on Jun 13, 2006 (gmt 0)

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



If this is a CSS style rule, then it's not:

display = "none"

It's

display: none;

PS-Posting personal URLs is not permitted. See the Terms of Service.
PPS-Welcome! :)

Chris82

10:20 pm on Jun 13, 2006 (gmt 0)

10+ Year Member



Sorry for the URL :-) I just didn't want to post all the source code.

I use Backbase for AJAX applications so the part of code that is not working properly in IE 7 looks like this:


<s:event b:on="close">
<s:fxstyle b:motion="exp" b:time="600" b:height="1px" />
<s:setstyle b:display="none" />
</s:event>

This is the action taken when I close one box and open the other and display="none" should make the browser not display the closed box' content but in IE 7 it is :-(

[edited by: SuzyUK at 6:53 am (utc) on June 14, 2006]
[edit reason] fixed smiley in code [/edit]

Robin_reala

6:46 am on Jun 14, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Can you post the code that is actually outputted?