Skip to content

Instantly share code, notes, and snippets.

@Harry260
Created September 28, 2022 01:43
Show Gist options
  • Select an option

  • Save Harry260/1b8ae12cecc4c0a77f0b12dfb69d48ef to your computer and use it in GitHub Desktop.

Select an option

Save Harry260/1b8ae12cecc4c0a77f0b12dfb69d48ef to your computer and use it in GitHub Desktop.
Print friendly download for https://www.brilliantpalaexams.com/ exam result
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