Last active
September 2, 2025 11:25
-
-
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; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
inspectconsoletabChange

_8on line3to change you selection.