Skip to content

Instantly share code, notes, and snippets.

@hidang
Last active September 12, 2021 11:43
Show Gist options
  • Select an option

  • Save hidang/bdf7b34b7fe79eee797430f341ffe7bf to your computer and use it in GitHub Desktop.

Select an option

Save hidang/bdf7b34b7fe79eee797430f341ffe7bf to your computer and use it in GitHub Desktop.
auto click khao sat UIT
let diem = 4; //0->4 ~=> 1->5
let tr_array = document.getElementsByClassName("answers-list");
for (let i = 0; i < tr_array.length; i++) {
  let td = tr_array[i].getElementsByTagName("td")[diem];
  td.onclick(td.value, td.name, td.type);
}
//hidang on github.com/hidang

Chỉ run ở page như hình dưới

  • F12 -> Open console -> Paste -> Enter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment