Tagged Questions
3
votes
2answers
1k views
jQuery slideToggle doesn't work with colspan in Firefox?
<script type="text/javascript">
$(document).ready(function() {
$('#description').show();
$('#extender').click(function() {
$('#description').slideToggle("fast");
});
});
...
0
votes
1answer
102 views
using slideToggle on a cell that is spaned 3 columns
I am trying to create a table, whereas when the user clicks on one of the rows, a block will slide down the same length of the table. I tried using a div, but I guess you can't have a div anywhere in ...