Write text/messages on Web page without using fields
comme j'ai un peu de temps... voici ce que j'ai trouvé chez searchdomino
JAVASCRIPT
Write text/messages on Web page without using fields
Ronald De Heer
04.26.2002
Rating: -2.50- (out of 5)
Write text/messages on Web page without using a field, hide when formulas or compute text.
Place on the form where you want to start the text to display the following as pass-through HTML:
<div id="display">
</div>
Then you can write to this location easily with this code:
Code
msg="Hello everybody"
document.getElementById("display").innerHTML ='<VALIGN=TOP><br><br><FONT SIZE=2 FACE="Arial">'+msg+'</FONT>'
JAVASCRIPT
Write text/messages on Web page without using fields
Ronald De Heer
04.26.2002
Rating: -2.50- (out of 5)
Write text/messages on Web page without using a field, hide when formulas or compute text.
Place on the form where you want to start the text to display the following as pass-through HTML:
<div id="display">
</div>
Then you can write to this location easily with this code:
Code
msg="Hello everybody"
document.getElementById("display").innerHTML ='<VALIGN=TOP><br><br><FONT SIZE=2 FACE="Arial">'+msg+'</FONT>'