I want to disable <script>
tags. Here's my code, but it doesn't work.
document.getElementsByTagName('script').disabled = true;
Can't be done... A script tag evaluates as soon as the DOM renderer renders it, so getting a handle on it after wards won't do much.