8 lines
279 B
JavaScript
8 lines
279 B
JavaScript
|
window.addEventListener("load", () => {
|
||
|
document.querySelectorAll(".projects tbody tr").forEach(row => {
|
||
|
let id = row.dataset.id
|
||
|
row.querySelector("button.see").addEventListener("click", () => {
|
||
|
window.location.href = `${id}/`
|
||
|
})
|
||
|
})
|
||
|
})
|