Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
150
rated 0 times [  151] [ 1]  / answers: 1 / hits: 18828  / 11 Years ago, fri, july 26, 2013, 12:00:00

I'm experimenting with the < pre> and < code> tags in html 5 as I would like to include some code snippets on my website. I'm using the page below as a test page but it is not displaying anything. Any reason why?



    <body>
<div style=color:#000000>
<pre>
<code>
<script type=text/javascript>
$('#inputField').hide();
</script>
</code>
</pre>
</div>
</body>


It was my understanding that using these new tags would negate any code that they contain within however this does not appear to be the case.



Cheers,



J


More From » jquery

 Answers
16

These tags are only for decorational purposes. Code within will still be executed. If you want it displayed you have to convert at least the <script> tag to html:



&lt;script type=text/javascript&gt;


Then the JavaScript code inbetween will be shown.



You don't need both though, I would use <pre> (which is per default a block element), <code> is intended for inline use.


[#76720] Thursday, July 25, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
markusdamienn

Total Points: 167
Total Questions: 119
Total Answers: 93

Location: Oman
Member since Wed, Apr 12, 2023
1 Year ago
;