Footable-v3-Ajax

Showing a Footable v3 Ajax Example

by Rich Costello

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fooplugins.github.io/FooTable/compiled/footable.bootstrap.min.css">
<script src="https://fooplugins.github.io/FooTable/compiled/footable.js"></script>
<table class="table" data-paging="true"></table>

JavaScript

jQuery(function($){
	$('.table').footable({
		"columns": $.get('https://fooplugins.github.io/FooTable/docs/content/columns.json'),
		"rows": $.get('https://fooplugins.github.io/FooTable/docs/content/rows.json')
	});
  });