Last active
June 6, 2016 20:12
-
-
Save vaskokj/597b12299a3d5484e639a1c5773cf2b9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css"> | |
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.1.0/css/responsive.bootstrap.min.css"> | |
<script type="text/javascript" src=" https://code.jquery.com/jquery-1.12.3.min.js"></script> | |
<script type="text/javascript" src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script> | |
<script> | |
$(function() { | |
$('#mytable').dataTable( { | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<table id="mytable" class="table table-striped table-bordered dt-responsive nowrap " cellspacing="0 " width="100%"> | |
<thead> | |
<tr> | |
<th>First name</th> | |
<th>Last name</th> | |
<th>Position</th> | |
<th>Office</th> | |
<th>Age</th> | |
<th>Start date</th> | |
<th>Salary</th> | |
<th>Extn.</th> | |
<th>E-mail</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Tiger</td> | |
<td>Nixon</td> | |
<td>System Architect</td> | |
<td>Edinburgh</td> | |
<td>61</td> | |
<td>2011/04/25</td> | |
<td>$320,800</td> | |
<td>5421</td> | |
<td>[email protected]</td> | |
</tr> | |
<tr> | |
<td>Garrett</td> | |
<td>Winters</td> | |
<td>Accountant</td> | |
<td>Tokyo</td> | |
<td>63</td> | |
<td>2011/07/25</td> | |
<td>$170,750</td> | |
<td>8422</td> | |
<td>[email protected]</td> | |
</tr> | |
<tr> | |
<td>Ashton</td> | |
<td>Cox</td> | |
<td>Junior Technical Author</td> | |
<td>San Francisco</td> | |
<td>66</td> | |
<td>2009/01/12</td> | |
<td>$86,000</td> | |
<td>1562</td> | |
<td>[email protected]</td> | |
</tr> | |
<tr> | |
<td>Cedric</td> | |
<td>Kelly</td> | |
<td>Senior Javascript Developer</td> | |
<td>Edinburgh</td> | |
<td>22</td> | |
<td>2012/03/29</td> | |
<td>$433,060</td> | |
<td>6224</td> | |
<td>[email protected]</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('Hello World!'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* todo: add styles */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment