vote up 5 vote down star
2

I am using jQuery's toggle() to show/hide table rows. It works fine in FireFox but does not work in IE 8.
show()/hide() work fine though.
slideToggle() does not work in IE either - it shows for a split second then disappears again. Works fine in FireFox.

My HTML looks similar to this

<a id="readOnlyRowsToggle">Click</a>  
<table>  
  <tr><td>row</td></tr>  
  <tr><td>row</td></tr>  
  <tr class="readOnlyRow"><td>row</td></tr>  
  <tr class="readOnlyRow"><td>row</td></tr>  
  <tr class="readOnlyRow"><td>row</td></tr>  
</table>

JavaScript

$(document).ready(function() {  
    $(".readOnlyRow").hide();  
    $("#readOnlyRowsToggle").click(function() {  
        $(".readOnlyRow").toggle();  
    });  
});
flag

It is working in IE7 – Daniel Moura Jun 10 at 14:33

9 Answers

vote up 9 vote down check

I've experienced this same error on tr's in tables. I did some investigation using IE8's script debugging tool.

First I tried using toggle:

$(classname).toggle();

This works in FF but not IE8.

I then tried this:

if($(classname).is(":visible"))//IE8 always evaluates to true.
     $(classname).hide();
else
     $(classname).show();

When I debugged this code, jquery always thought it was visible. So it would close it but then it would never open it back.

I then changed it to this:

var elem = $(classname)[0];
if(elem.style.display == 'none')
     $(classname).show();
else
{
     $(classname).hide();   			
}

That worked fine. jQuery's got a bug in it or maybe my html's a little screwy. Either way, this fixed my issue.

link|flag
Love it. I found this bug also and this suggestion fixed my problem within seconds. Many Thx. – Aaron Jul 22 at 4:35
Thanks dude. Another episode of 'StackOverflow saved my job!' – ip Aug 5 at 15:54
elem.style.display should be elem.css('display') – Martin Sep 16 at 20:08
vote up 0 vote down

I fixed this problem by hiding children of the TR element.

toggleTr($(".toggletr"));

function toggleTr(el) {
    $(el).children('td').each(function() {
        $(this).toggle();
    });
}

This seems to be ok for FF3.5/FF3/IE8/IE7/IE6/Chrome/Safari.

link|flag
vote up 0 vote down

I found that while this does not work in IE8

$('.tableRowToToggle').toggle();

but this does work:

$('.tableRowToToggle').each(function(){this.toggle()});

Got the idea from the link jAST posted here before

link|flag
vote up 0 vote down

Just encountered this myself -- the easiest solution I've found is to check for:

:not(:hidden)

instead of

:visible

then act accordingly . .

link|flag
vote up 0 vote down
$(document).ready(function() {  
    $(".readOnlyRow").hide();  
    $("#readOnlyRowsToggle").click(function() {  
        $(".readOnlyRow").toggle($('.readOnlyRow').css('display') == 'none');  
    });  
});

There is a jQuery bug that IE8 causes everything to evaluate to true. Try above

link|flag
vote up -1 vote down

I've noticed this as well. Likely you'll have to toggle a class on each td instead. Haven't tried this solution yet, so let me know!

For others - this is specific to IE8, not 6 or 7.

EDIT

Clearly you didn't try this as evidenced by the -1, as I just did with fine results (in my situation).

CSS

tr.hideme td { display: none }

JS

$("#view-advanced").click(function() {
    $("tr.hideme td").toggle();
    return false;
});
link|flag
placing toggle() on the td's produces a different result: it toggles some cells and others not, but it is not consistent in what/how it toggles. I suspect there may be a halloween problem occuring when placing it on td's. Interestingly it works fine on FF, and show()/hide() on td's works fine on IE8 & FF. – Robert MacLean Jun 10 at 13:07
In my first test I actually removed the class from the tr and put it on the TD, which is where I got the weird results. I have now tried changing it with the way you suggested (excluding CSS) in your edit (i.e. changing the selector) and that selector does not work in either FF or IE8. I also tried the following combinations of selectors and those didn't work either: tr.readOnlyRow > td .readOnlyRow > td .readOnlyRow td I then tried changing the hide function to the CSS and ended up with the same weird issue as before. – Robert MacLean Jun 10 at 15:33
Not sure it doesn't work for you - works fine for me in IE6 - 8, FF3, Safari. – ScottE Jun 10 at 16:50
Which version of jQuery are you each using? – Cory Larson Jun 12 at 17:58
most recent - 1.3.2 – ScottE Jun 12 at 18:51
vote up 3 vote down

Remove the period from your <tr class=".readOnlyRow"><td>row</td></tr>. The syntax for jQuery class selecting is to prepend it with a period, but you don't need it in your HTML code.

link|flag
Well spotted, but not the cause unfortunately. That was caused by my retyping into the question. I have fixed it up the question, but the problem still remains. – Robert MacLean Jun 10 at 12:38
Have you tried simply defining some CSS for your .readOnlyRow class with display:none? You could then toggle the CSS class (toggleClass) instead of having jQuery figure out the visibility toggling. – Cory Larson Jun 10 at 15:10
vote up -1 vote down

because you are having them click an <a>, you need the function to return false.

link|flag
-1: not that at all. I can put anything I want in the click and it works, just not the toggle – Robert MacLean Jun 10 at 12:35
vote up -1 vote down

http://groups.google.com/group/jquery-en/browse_thread/thread/65f58538930f00c2

link|flag
-1: adding an event didn't help – Robert MacLean Jun 10 at 12:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.