<script>
function getSize() {
    var myFSO = new ActiveXObject("Scripting.FileSystemObject");
    var filepath = document.upload.file.value;
    var thefile = myFSO.getFile(filepath);
    var size = thefile.size;
    alert(size + " bytes");
}
</script>

The above JavaScript code is some code entered by the user, but it can not be displayed within <pre>. Do you have any suggestion?

link|improve this question

72% accept rate
why can't it be displayed in <pre>? Isn't that the point? – Kobi Dec 9 '09 at 9:20
<xmp></xmp> works, is there other solution? – Steven Dec 9 '09 at 9:32
I am using PHP. – Steven Dec 9 '09 at 9:40
feedback

3 Answers

I'm not quite clear on the specifics of the issue, as pre tags should, in general, do the trick, but here's an alternative tag:

<xmp>[Code can be displayed here]</xmp>

If you're using a server-side language, though, I'd suggest converting to HTML entities before outputting, then using CSS to style it.

As well, be sure if you're accepting user input that any JavaScript is being filtered and never executed.

link|improve this answer
How to filter Javascript code if I accept user input? – Steven Dec 9 '09 at 9:26
Alas, that tag appears to have been deprecated: stackoverflow.com/questions/4545/xmp-tag – pavium Dec 9 '09 at 9:27
BuT <xmp></xmp> works so far. Is there other alternative? – Steven Dec 9 '09 at 9:31
HTML parsing should be done by a library in whichever server-side language you're using. In PHP there's HTML Purifier, in C# there's HTML Agility Pack. And you're right, pavium, it is deprecated, figured I'd provide a different element as an option, though. – Zurahn Dec 9 '09 at 9:33
feedback

You can use the <pre> and <code> tags to display formatted code. But to prevent the code from executing and not displaying you'll need to convert the text to character entities. > becomes &gt;, < becomes &lt, etc.

You could do this by using PHP, for example:

<?php echo htmlentities('function getSize() {  var myFSO = new
ActiveXObject("Scripting.FileSystemObject");
  var filepath =
document.upload.file.value;   var
thefile = myFSO.getFile(filepath);
  var size = thefile.size;  alert(size
+ " bytes"); }'); ?>

As your system relies on user input, you might have to rely on AJAX to actually process the user input and convert it to HTML entities.

link|improve this answer
feedback

You should the your content htmlcoded just like < into &lt space &nbsp and song

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.