Created
September 28, 2022 01:43
-
-
Save Harry260/1b8ae12cecc4c0a77f0b12dfb69d48ef to your computer and use it in GitHub Desktop.
Print friendly download for https://www.brilliantpalaexams.com/ exam result
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 itemsToRemove = [ | |
| ".nav-list", | |
| ".nav", | |
| ".review-exam-filter", | |
| ".re-subject-row", | |
| "#review-tab", | |
| "legend", | |
| ".discuss-actions2", "#header", | |
| ".re-correct-answer:has(> p)" | |
| ]; | |
| var cssx= document.createElement("style") | |
| var css = `${itemsToRemove.join(",")} {display:none !important} .btn-danger{background-color:#DDDDDD!important; color:balck!important; background-image:none}` | |
| cssx.innerHTML = css | |
| document.body.append(cssx) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment