Not an actual answer, but a word of caution (depending on what you're trying to do with this):
IMHO, in almost all cases, input sanitization should be done on the server side (in this case, using the native PHP functions). If your intent is to replace PHP functionality with client-side functionality, I would strongly advise against it.
Why?
Just because you're authoring a website, it doesn't mean that:
- Your users have JavaScript enabled. If you aren't submitting your form strictly through script (using submit buttons, etc), it still allows users to submit invalid data (such as <script> tags, etc.)
- Requests may not actually be initiated by a browser at all, circumventing any JS-based input sanitization.
Again, not really answering your question, but a word of caution based on where you could possibly be headed based on your question :)
strip_tagsdoes not remove the content of stripped tags. – Lightness Races in Orbit Apr 9 '11 at 0:08strip_tags's behaviour, or the behaviour that you think it has. :D) – Lightness Races in Orbit Apr 9 '11 at 0:19