> J'ai une applet d�clar� comme ceci dans ma page html : > <applet name="appletWE" code= ..> > <param name="background" value="http://localhost/toto.gif"> > etc .. > J'ai un javascript qui me renvoie "http://localhost/toto.gif". Comment > l'int�gr� dans la page html et surout dans background.
Le plus simple,
mais certainement pas multi browsers / OS
<SCRIPT LANGUAGE=JAVASCRIPT>
<!--
document.write("<BODY BACKGROUND='http://localhost/toto.gif')>");
//-->
</SCRIPT>
willfried
