$(function () { $('.col-check').hide(); $('#btn-admin').on('click', function () { if ($("#toolbar-admin").is(":visible")) { $("#toolbar-admin").hide(); $(".col-check").hide(); } else { $("#toolbar-admin").show(); $(".col-check").show(); } }); $('#btn-online').on('click', function () { $('table tr').filter(':has(:checkbox:checked)').find('td').parent().removeClass().addClass('success'); $('table tr').filter(':has(:checkbox:checked)').find('td.status').text('online'); }); $('#btn-offline').on('click', function () { $('table tr').filter(':has(:checkbox:checked)').find('td').parent().removeClass().addClass('warning'); $('table tr').filter(':has(:checkbox:checked)').find('td.status').text('offline'); }); $('#btn-out-of-order').on('click', function () { $('table tr').filter(':has(:checkbox:checked)').find('td').parent().removeClass().addClass('danger'); $('table tr').filter(':has(:checkbox:checked)').find('td.status').text('out of order'); }); }); $(document).ready(function () { getServers('id'); }); var html = '