Skip to content

Instantly share code, notes, and snippets.

@hheinsoee
Last active August 16, 2023 08:52
Show Gist options
  • Save hheinsoee/754979af78e414dc08948892bcbb48d2 to your computer and use it in GitHub Desktop.
Save hheinsoee/754979af78e414dc08948892bcbb48d2 to your computer and use it in GitHub Desktop.
Simple Table
<div id="simple"></div>
<script>
var userList = [
{
id: 6,
profile_image_url: "https://avatars.githubusercontent.com/u/35089574?v=4",
name: "Hein Soe",
age: 28,
rs: true,
create_time: "2023-08-14T06:18:52.000Z"
},
{
id: 5,
profile_image_url: "https://lh3.googleusercontent.com/a/AAcHTtcwpenti5VYnLAXfWa3hrv-rVVTJyvIjq0-ESm89Ikdt60=s96-c",
name: "heinsoe.com",
age: 28,
rs: true,
create_time: "2023-08-14T04:55:47.000Z"
},
//more
];
TheTable(
{
element: '#simple',
data: userList,
name: "simple",
}
)
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment