Click to See Complete Forum and Search --> : place text on page


apple
08-30-2003, 12:25 AM
A simple question for a begginer


what code do i need between the two script statements so that the second script line will print as normal at the left side of the page or i quess i am asking what statements do i need to delete the effects of the style statement.


<div style="position:absolute;top:50px;left:300px;"</div>

<SCRIPT>document.write(getDateStr())</SCRIPt>



<SCRIPT>document.write(getDateStra())</SCRIPT>

</html>

Sux0rZh@jc0rz
08-30-2003, 12:50 AM
<div style="position:absolute;top:50px;left:300px;"</div>

<SCRIPT language="text/javascript>
-->/
document.write(getDateStr())
/-->
</SCRIPt>


<div style="position:absolute;top:60px;left:1px;"</div>

<SCRIPT language="text/javascript">
-->/
document.write(getDateStra())
/-->
</SCRIPT>

Not sure about this one but try it out.