SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <script>
- $("down-checkbox").click(function(){
- $("td .badge").each(function(){
- if($($this).text() == "LIVE"){
- $($this).hide();
- }
- else if($($this).text() == "DOWN"){
- $($this).show();
- }
- });
- });
- </script>
- $('span.badge.badge-success:contains("LIVE")').hide();
- <script>
- $("down-checkbox").click(function(){
- $.each($(".badge.badge-success"), function(){
- $(this).closest("tr").hide();
- });
- });
- </script>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.