JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<table class="table table-bordered" id="table">
  <thead>
    <tr>
      <th>Time</th>
      <th>Header</th>
      <th>Header</th>
      <th>Header</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td id="time" data-default="00:00">48:25</td>
      <td>Data</td>
      <td>Data</td>
      <td>Data</td>
    </tr>
  </tbody>
</table>

<button type="button" class="btn btn-block btn-danger" id="reset">Reset</button>

JavaScript

$(document).ready(function() {
           $("#reset").on("click", function() {
           		$("#time").each(function() {
              		$(this).text($(this).attr("data-default"));
              });
           });
      });