Hi,
Here is my problem :
Here is my first HTML file including a js :
<script language="JavaS cript"
src="http://www.toto.com/monjs.js"></script>
In my "monjs.js" :
document.write( '<table cellpadding="0" cellspacing="0" border="1"
style="width:25 0; color: #000000">');
document.write( '<tr>');
document.write( '<td style="width: 250;">');
document.write( "line1");
document.write( '</td>');
document.write( '</tr>');
document.write( '<tr>');
document.write( '<td style="width: 250;">');
document.write( "<s" + "cript language='javas cript'
type='text/javascript'
src='http://www.toto.com/monjs2.js'></s" + "cript>");
document.write( '</td>');
document.write( '</tr>');
document.write( '<tr>');
document.write( '<td style="width: 250;">');
document.write( "line3");
document.write( '</td>');
document.write( '</tr>');
document.write( '</table>');
In my "monjs2.js" :
document.write( 'line2');
See the result : I've got no text in my line 2 of my table. "line2" is
written after the table.
Thanx a lot for any idea...
@+
David
Here is my problem :
Here is my first HTML file including a js :
<script language="JavaS cript"
src="http://www.toto.com/monjs.js"></script>
In my "monjs.js" :
document.write( '<table cellpadding="0" cellspacing="0" border="1"
style="width:25 0; color: #000000">');
document.write( '<tr>');
document.write( '<td style="width: 250;">');
document.write( "line1");
document.write( '</td>');
document.write( '</tr>');
document.write( '<tr>');
document.write( '<td style="width: 250;">');
document.write( "<s" + "cript language='javas cript'
type='text/javascript'
src='http://www.toto.com/monjs2.js'></s" + "cript>");
document.write( '</td>');
document.write( '</tr>');
document.write( '<tr>');
document.write( '<td style="width: 250;">');
document.write( "line3");
document.write( '</td>');
document.write( '</tr>');
document.write( '</table>');
In my "monjs2.js" :
document.write( 'line2');
See the result : I've got no text in my line 2 of my table. "line2" is
written after the table.
Thanx a lot for any idea...
@+
David
Comment