• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need simple advice on putting a Javascript into a table.

CaptainBill

Senior member
Ok I have the following script and I need to put it in a table so it can be positioned where I want it on the page (on the side as a menu):

<script type='text/javascript'>

//HV Menu- by Ger Versluis (http://www.burmees.nl/)
//Submitted to Dynamic Drive (http://www.dynamicdrive.com)
//Visit http://www.dynamicdrive.com for this script and more

function Go(){return}

</script>
<script type='text/javascript' src='exmplmenu_var.js'></script>
<script type='text/javascript' src='menu_com.js'></script>
<noscript>Your browser does not support script</noscript>

Now whenever I put table tags around it it doesn't load. The place that I downloaded it at said to put it in between the <body></body>
tags...could that have something to do with it? Is it not possible to put this script in a table?
 
i had some problems with "empty" <SCRIPT> tags that read the source from external files...
what i end up doing is putting empty lines between the <SCRIPT> and </SCRIPT> tag on those...

try this instead...

<script type='text/javascript'>

//HV Menu- by Ger Versluis (http://www.burmees.nl/)
//Submitted to Dynamic Drive (http://www.dynamicdrive.com)
//Visit http://www.dynamicdrive.com for this script and more

function Go(){return}

</script>

<script type='text/javascript' src='exmplmenu_var.js'>
<!--
// -->

</script>
<script type='text/javascript' src='menu_com.js'>
<!--
// -->

</script>
<noscript>Your browser does not support script</noscript>

see if that helps .....

-1019-
 
Got it figured out...This script coujldn't be put into a table cell like I was trying to do, but in the config file of the script there was the option to adjust the x and y coordinates to adjusts the position on the page...thanks for your reply as well stndn!
 
Back
Top