Problem with show() and hide() in IE8
this code doesnt seem to work in IE 8, but works great in ie7 FF, chrome, safari. Is this a known bug?
- $("td.dontShow").css("display","none");
- $("#clients_scroll_left").click(function(){
$("td.dontShow").hide(300);
});
- $("#clients_scroll_right").click(function(){
$("td.dontShow").show(300);
});
- <table>
- <tr>
- <td>content</td>
- <td>content</td>
- <td class="dontShow">content</td>
- </tr>
- </table>
nothing happens when i click once #clients_scroll_right, but when i click #clients_scroll_left the hidden td shows and then hides quickly.