Posts by albertedevigo • 283 points
2 posts
-
11
votes4
answers15388
viewsA: How to make a table responsive using (Twitter) Bootstrap?
Simply use the component .table-responsive that provides the Bootstrap: <div class="table-responsive"> <table class="table"> ... </table> </div> You can find more information…
-
7
votes10
answers29077
viewsA: Scroll through an Array and check if any element is empty
There are many ways to check if the element is empty. For example, following this scheme: if (elemento é vazio) { faça qualquer coisa } You must define what "empty" means: null? 0 is empty? the…