How to show literal javascript as part of a regular body in HTML?
3 answers
Example here: http://jsfiddle.net/ZYKpk/3/
Use script as: <pre> <script> alert('123'); </script> </pre> Or use script as: <code> <script> alert('123'); </script> </code> 0