Guest User

Untitled

a guest
Feb 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $("this tbody").css("display","none");
  2.  
  3. $(this).parent().find('tbody').css("display","none");
  4.  
  5. $(this).next("tbody").css("display","none");
  6.  
  7. $(this).next("tbody").toggle();
  8.  
  9. <table class="table" id="item"style="display:none;">
  10. <tbody style="height:0px;width:82%; display:table;"></tbody>
  11. </table>
  12.  
  13. and using script
  14.  
  15. <script>`enter code here`
  16. document.getElementById("total-item").style.display = "block";
  17. </script>
Add Comment
Please, Sign In to add comment