Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Sever Side Include Javascript error

Options
  • 27-10-2011 9:27pm
    #1
    Registered Users Posts: 1,831 ✭✭✭


    I am using a spry menu for the navigation bar on my website. To cut down on editing, I put the content of the navbar in a server side include, however the script at the bottom of the HTML is still in the main script of the HTML.

    eg.

    <head>
    <?php require_once('includes/navbarinclude.php'); ?>
    </head>

    <body>



    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    Dreamweaver is throwing an error at me because 'menubar1' is in the include. It doesn't see it on the page. Can I include the script type in the include or is that bad practice? This would get rid of the errors for me


Advertisement