Skip to content

Instantly share code, notes, and snippets.

View edriso's full-sized avatar
🌱
How do you eat an elephant? One bite at a time. 🐘 \n Third time's a charm 🐱‍💻

Mohamed Idris edriso

🌱
How do you eat an elephant? One bite at a time. 🐘 \n Third time's a charm 🐱‍💻
View GitHub Profile
@edriso
edriso / index.js
Last active November 25, 2023 16:07
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');