Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Text printing

Status
Not open for further replies.

VJar

Programmer
Aug 3, 2002
18
UA
I have big text. How I can print this text in
body of html document with java script?
For exmple this:

document.write('fjghjhfgh
ghghghgjhj
ghghghghgh
ghghghghgh');

That is mistake so to write. But write many
"document.write" i dont want.
 
Try something like:

<script language=&quot;javascript&quot;>
var bigtext='<table>'
bigtext += '<tr><td>';
bigtext += 'ghghghgjhj';
bigtext += '</td></tr></table>';
//and add more to the string as you wish

document.write(bigtext);

</script>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top