Skip to content

Instantly share code, notes, and snippets.

@edriso
Last active November 25, 2023 16:07
Show Gist options
  • Save edriso/ec7158bcd13cef60974d6999c2258730 to your computer and use it in GitHub Desktop.
Save edriso/ec7158bcd13cef60974d6999c2258730 to your computer and use it in GitHub Desktop.
Code to quickly evaluate the long and time consuming courses evaluation for ITI boot camp
document.querySelectorAll('tr > td > div > input[type="hidden"]').forEach(elm => {
elm.setAttribute('value', '5');
});
document.querySelectorAll('a[title="0"]').forEach(elm => {
elm.setAttribute('title', '5');
});
document.querySelectorAll('.ratingStar').forEach(elm => {
elm.classList.remove('emptyRatingStar');
elm.classList.add('filledRatingStar');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment