1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
6 <script type=
"text/javascript">
7 function displayOnOff(el
)
9 el
.style
.display
= (el
.style
.display
== 'block') ? 'none' : 'block';
15 <!-- Removing the <ul> and <li> elements will make this work in Safari! -->
18 <form action=
"./" id=
"myform" method=
"get" style=
"display:none">
19 <p><input id=
"tag_list" name=
"tag_list" size=
"40" type=
"text" value=
"blah blubb" >
22 <p>There should be an input field above this line of text.
</a></p>
26 document
.body
.offsetLeft
27 displayOnOff(document
.getElementById('myform'))
28 document
.body
.offsetLeft