<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?
<pre>? Isn't that the point? – Kobi Dec 9 '09 at 9:20