Skip to content

Commit

Permalink
update website
Browse files Browse the repository at this point in the history
  • Loading branch information
nabsiddiqui committed May 29, 2024
1 parent 425018c commit a4b99e3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: Unaccompanied Migrant Children Searchable Database
header: Unaccompanied Migrant Children Searchable Database
---

<head>
<link rel="stylesheet" href="https://cdn.datatables.net/2.0.8/css/dataTables.dataTables.css" />

<script src="https://cdn.datatables.net/2.0.8/js/dataTables.js"></script>

<script src="jquery-3.7.1.min.js"></script>
</head>

In my previous blog post, I examined data from the New York Times about Unaccompanied Migrant Children in the United States. In the previous post, I did not get a chance to look at the zip code data, but I am hoping to do so soon.

<table id="myTable" class="display">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1 Data 1</td>
<td>Row 1 Data 2</td>
</tr>
<tr>
<td>Row 2 Data 1</td>
<td>Row 2 Data 2</td>
</tr>
</tbody>
</table>

$(document).ready( function () {
$('#myTable').DataTable();
} );

This file was deleted.

0 comments on commit a4b99e3

Please sign in to comment.