Guest User

Untitled

a guest
Jan 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <script>
  2. $("down-checkbox").click(function(){
  3. $("td .badge").each(function(){
  4. if($($this).text() == "LIVE"){
  5. $($this).hide();
  6. }
  7. else if($($this).text() == "DOWN"){
  8. $($this).show();
  9. }
  10. });
  11. });
  12. </script>
  13.  
  14. $('span.badge.badge-success:contains("LIVE")').hide();
  15.  
  16. <script>
  17. $("down-checkbox").click(function(){
  18. $.each($(".badge.badge-success"), function(){
  19. $(this).closest("tr").hide();
  20. });
  21. });
  22. </script>
Add Comment
Please, Sign In to add comment