| A/C ID | : | 3000/A01 |
| A/C ID | : | 3000/A01 |
| A/C ID | : | 3000/A01 |
I\'m trying to add a row to a table and have that row slide into view, however the slidedown function seems to be adding a display:block style to the table row which messes
http://jsfiddle.net/PvwfK/136/
A/C ID
:
3000/A01
A/C ID
:
3000/A01
A/C ID
:
3000/A01
$(function () {
$(".table01 td").on("click", function () {
var $rows = $('.content01');
if ($(".content01:first").is(":hidden")) {
$("#header01").text("▲ Customer Details");
$(".content01:first").slideDown();
} else {
$("#header01").text("▼ Customer Details");
$(".content01:first").slideUp();
}
});
});
- 热议问题