squarkman
Technical User
- Mar 10, 2008
- 34
The text below is an entire html file called menu.html. What is the purpose of document.write... Why not in this case just do it as standard HTML, no javascript object stuff? This seems silly. If something calls this html file, it could simply be
<a target='_top' href=' class='DOCLINK'>Home</a><br>
not
document.write("<a target='_top' href=' class='DOCLINK'>Home</a><br>");
Any thoughts, please?
<!--
document.write("<a target='_top' href=' class='DOCLINK'>Home</a><br>");
document.write("<a target='_top' href='../../news' class='DOCLINK'>What's New</a><br>");
document.write("<a target='_top' href='../../whatwedo/' class='DOCLINK'>What We Do</a><br>");
document.write("<a target='_top' href='../../designgallery/' class='DOCLINK'>Design Gallery</a><br>");
document.write("<a target='_top' href='../../employeeservices/' class='DOCLINK'>Employees</a><br>");
document.write("<a target='_top' href='../../sales/' class='DOCLINK'>Sales</a><br>");
document.write("<a target='_top' href='../../clients/' class='DOCLINK'>Clients</a><br>");
document.write("<a target='_top' href='../../proe/' class='DOCLINK'>Pro/ENGINEER</a><br>");
document.write("<a target='_top' href='../../training/' class='DOCLINK'>Training/Mentoring</a><br>");
document.write("<a target='_top' href='../../contact/' class='DOCLINK'>Contact Us</a><br>");
document.write("<a target='_top' href='../../employment/' class='DOCLINK'>Work For Us</a><br>");
document.write("<a target='_top' href='../../links2/' class='DOCLINK'>Engineering Links</a><br>");
document.write("<a target='_top' href='../../links/' class='DOCLINK'>Links</a><br>");
-->
<a target='_top' href=' class='DOCLINK'>Home</a><br>
not
document.write("<a target='_top' href=' class='DOCLINK'>Home</a><br>");
Any thoughts, please?
<!--
document.write("<a target='_top' href=' class='DOCLINK'>Home</a><br>");
document.write("<a target='_top' href='../../news' class='DOCLINK'>What's New</a><br>");
document.write("<a target='_top' href='../../whatwedo/' class='DOCLINK'>What We Do</a><br>");
document.write("<a target='_top' href='../../designgallery/' class='DOCLINK'>Design Gallery</a><br>");
document.write("<a target='_top' href='../../employeeservices/' class='DOCLINK'>Employees</a><br>");
document.write("<a target='_top' href='../../sales/' class='DOCLINK'>Sales</a><br>");
document.write("<a target='_top' href='../../clients/' class='DOCLINK'>Clients</a><br>");
document.write("<a target='_top' href='../../proe/' class='DOCLINK'>Pro/ENGINEER</a><br>");
document.write("<a target='_top' href='../../training/' class='DOCLINK'>Training/Mentoring</a><br>");
document.write("<a target='_top' href='../../contact/' class='DOCLINK'>Contact Us</a><br>");
document.write("<a target='_top' href='../../employment/' class='DOCLINK'>Work For Us</a><br>");
document.write("<a target='_top' href='../../links2/' class='DOCLINK'>Engineering Links</a><br>");
document.write("<a target='_top' href='../../links/' class='DOCLINK'>Links</a><br>");
-->