I'm using the pre tag to display preformatted text (including line breaks, spaces and tabs etc.) But large lines without line-breaks are shown in one line and a scroll bar is added.
I want to limit the width of the pre tag (such that large lines are broken up to come to new lines and no scroll is required. Is this possible or is there some other tag that I can use?
Thanks.
Code is something like:
$.post("contr.php",q1,function(data){ $("#el_text").html("< pre>"+data+"< /pre>");});