List.js CDN Init
Load a pinned List.js build and attach it to an existing HTML table.
Phase 9 pins List.js from jsDelivr. The library script loads before your lesson script. Keep a variable for the instance.
| Name | Age | |
|---|---|---|
| Anna | anna@example.com | 18 |
| Homer | homer@example.com | 35 |
| Oscar | oscar@example.com | 52 |
| Emily | emily@example.com | 30 |
Important JavaScript
peopleList = new List("people-list", {
valueNames: ["name", "email", "age"]
});