This file contains hidden or 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
<script> | |
// build the interface | |
const rowIds = []; | |
const $body = document.getElementsByTagName("body")[0]; | |
$body.addEventListener("click", e => { | |
// event handler on body - need to check if the orginal target of the | |
// bubbled event has a value, i.e. is a checkbox | |
const val = e.target.value; |
OlderNewer