I need a code that will block html and javascript. I have it so my users can go to their Control Panel, and in a text box, insert any text they wish. I want it so that it will block any html, and javascript they put in there. Not the textbox, but the page where it shows the info. I don't know if there are tags that will let me do that, becuase I want it to only work in the specific area where it shows the info the user put. Thank you.
This would be most easily done with a server-side language like PHP, which has a strip_tags() function specifically designed to strip user-defined HTML tags. See the documentation.