Last active
March 6, 2025 14:42
-
-
Save Developer-Incoming/9220ffb242bde7e424e370b05737a2ff to your computer and use it in GitHub Desktop.
KSU Auto Lecturer Rating
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
// Run in browser's console, and then simply check the agreement bias questions, and then you're ready to go. | |
document.querySelectorAll("div").forEach(div => { | |
const label = div.querySelector("label"); | |
if (label && label.textContent.trim() === "موافق تماماً") div.querySelector('input[type="radio"]').checked = true; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment