Pagination working for columns

Bring pagination system from KIA that is compatible with page refreshes
This commit is contained in:
Jorge Manrubia
2025-09-28 14:21:16 +02:00
parent b5dd91f4a4
commit 72fb15dd0f
8 changed files with 259 additions and 37 deletions
+9
View File
@@ -0,0 +1,9 @@
export function createElement(name, properties) {
const element = document.createElement(name)
for (var key in properties) {
element.setAttribute(key, properties[key])
}
return element
}