JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff2"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.svg"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.ttf"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css">
<table class="table table-striped table-bordered table-hover table-condensed tableSiteUser">
    <thead>
        <tr>
            <th>#</th>
            <th>SiteName</th>
            <th>UserName</th>
            <th>Channel</th>
            <th>Action</th>
        </tr>
    </thead>
    <tbody id="site-table-body">
        <tr>
            <td class="countsiteuser">1</td>
            <td>
                <select class="form-control">
                    <option>www.google.com</option>
                    <option>www.yahoo.com</option>
                    <option>www.flipkart.com</option>
                    <option>www.gamil.com</option>
                </select>
            </td>
            <td>
                <input type="checkbox" value="user" id="checkboxbutton">
                <input type="text" class="and" placeholder="Default">
            </td>
            <td>
                <input type="text" class="form-control" placeholder="Enter the Channel">
            </td>
            <td><span class="form-control glyphicon glyphicon-trash siteUserrow-remover1"></span>
            </td>
        </tr>
        <tr>
            <td class="beer" contenteditable="false">2</td>
            <td>
                <select...

JavaScript

$('span.Hello').on('click', function() {
    $(this).closest('tr').remove();
});