JSON JQuery Pagination

Simple way to integrate JSON JQuery Pagination

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<div style="width:400px">
<table class="paginated">
    <thead>
        <tr>
            <th class="col">Play Id</th>
            <th class="col">Question1</th>  
       </tr>
  </thead>
  <tbody id="myTable">
 </tbody>
  
</table>
<span id="nextValue">next</span><br><span id="PreeValue">Pre</span>
</div>

JavaScript

$(document).ready(function(){
  var table =  $('#myTable');
 var b =...