Last active
May 29, 2024 10:27
-
-
Save mahdyar/418d6f72cdd5d0a889be4523c2dd396f to your computer and use it in GitHub Desktop.
پرکردن نظرسنجیهای بوستان به صورت خودکار | Select Bustan survey checkboxes
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
var allInputs = document.getElementsByTagName("input"); | |
for (var i = 0, max = allInputs.length; i < max; i++){ | |
if (allInputs[i].type === 'checkbox' && allInputs[i].id.endsWith('_8')) | |
allInputs[i].checked = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
inspect
console
tabChange

_8
on line3
to change you selection.