I don't know if this is part of the issue or not, but IE7 does not
have support for the display:table; property.

See quirksmode to see what properties it does support (not many):
http://www.quirksmode.org/css/display.html


On Jul 20, 2:44 am, Billy <mail.billy...@gmail.com> wrote:
> Hello all,
>
> I'm relatively new to jQuery, and I'm having some trouble making a
> selected <tbody> display in IE. It seems to work fine in FireFox, and
> Chrome.
>
> See here:
>
> http://wwwdev.latrobe.edu.au/nursing/ProspectiveStudents/Postgraduate...
>
> I've looked up various fora, but the only things I can find seem to
> relate to earlier versions of jQuery. We're running jQuery-min.1.3.2
> on this site.
>
> The relevant parts of the code which run in FF/Chrome, but appear to
> not run in IE:
>
> <script language="javascript" type="text/javascript">
> $(document).ready(function()
> {
>     //...
>         $('#questionTable tbody:first').addClass('selected');
>
>    //...
>
> });
>
> </script>
>
> Relevant CSS associated with this:
>
> <style>
> #questionTable tbody {
>         display: none;}
>
> #questionTable tbody.selected {
>         display:table;}
>
> </style>
>
> Help?
>
> Thanks in advance,
>
> Billy

Reply via email to