jQuery(document).ready(function(){
    jQuery('#btn-subdomains').click(function (e) {
        e.preventDefault();
        jQuery('.table-subdomains tbody tr:nth-child(1n+5)').css('display', 'table-row');
        jQuery(this).css('display', 'none');
    })
});