# onclick , theBigCollapse. html, , , - class, id.
, $("#theBigCollapse") $(".theBigCollapse")
, , .
<a href="#">Get your work critiqued</a>
, . :
$(".theBigCollapse a").click(function(e){
e.preventDefault();
});
JS :
$(document).ready(function(){
$(".theBigCollapse").click(function() {
$(".collapse").collapse('toggle');
});
$(".theBigCollapse a").click(function(e){
e.preventDefault();
});
});
Fiddle
, "" , , , div table, .
.
<table class="table forum table-striped">
<tr>
<td>....</td>
</tr>...
<div class="collapse">
Testing
</div>
</table>
, div <td></td> <table></table>.
.
<table class="table forum table-striped">
<tr>
<td>....</td>
</tr>...
</table>
<div class="collapse">
Testing
</div>
Fiddle
P.S , , , . .
:
<table>
<table>
<tr><td>...</td></tr>
</table>
</table>