Possible Duplicate:
What HTML tags are allowed on Stack Overflow, Server Fault, and Super User?
I'm inserting the following script into my post, which is removed when shown. How did this happen?
<script>alert('hi');</script>
I'm inserting the following script into my post, which is removed when shown. How did this happen?
|
|||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
By removing the tags in the appropriate place. It's called "preparing your data for the appropriate context". |
|||
|
|
|
The post-handling code for SO uses some sort of processing on the text that removes most of the HTML, thus removing the script part. If it didn't you could do something like the following:
|
|||
|
|
|
First of all it's not inside the script tag. Even if you put it in the script tag it gets converted to corresponding HTML entities. For example,
The above code gets converted using following lookup table.
|
||||