forked from dyutibarma/monochrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
425018c
commit a4b99e3
Showing
2 changed files
with
37 additions
and
8 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
_posts/2024-05-15-unaccompanied-migrant-children-searchable-database.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
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(); | ||
} ); |
8 changes: 0 additions & 8 deletions
8
_posts/2024-05-15-unaccompanied-migrant-children-searchable-database.md
This file was deleted.
Oops, something went wrong.