Bootstrap Table
by jimkennelly
HTML
<link rel="stylesheet" href="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.css">
<script src="https://rawgit.com/wenzhixin/bootstrap-table/master/src/bootstrap-table.js"></script>
<table id="t1" data-toggle="table" data-url="https://api.myjson.com/bins/1cqhpp" data-card-view="true" data-show-toggle="true">
<thead>
<tr>
<th data-field="ClassTitle">Name</th>
<th data-field="ClassDesc">Stars</th>
</tr>
</thead>
</table>
<button onClick="hideStuff()">
Test
</button>
</button>
JavaScript
$(document).ready(function() {
$("#t1").bootstrapTable({
onToggle:hideStuff(),
});
});
function test(){
//alert("aaa");
}
function hideStuff(){
$( ".title" ).hide();
}
setInterval(function(){
$( ".title" ).hide()
}
, 100);