@ Edwin wrote:
"Aaron Merrick" <[EMAIL PROTECTED]> wrote:
This works fine in plain html:
<body onload="start();initialize();onoff('mainmenu',section,'on')"
onresize="window.location.reload(false)" topmargin="1" bottommargin="0"
leftmargin="0" rightmargin="0">
When I put it in PHP thus:
echo "<body onload=\"start();initialize();onoff('mainmenu',section,'on')\"
onresize=\"window.location.reload(false)\" topmargin=\"1\"
bottommargin=\"0\" leftmargin=\"0\" rightmargin=\"0\">";
When the page loads, I get an "Error: 'menuObj' is null or not an object"
I think php is parsing your js code. Have you tried echoing with single
quotes?
echo '<body onload="start();initialize();onoff(\'mainmenu\',section,\'on\')"
onresize="window.location.reload(false)" topmargin="1" bottommargin="0"
leftmargin="0" rightmargin="0">';
Or better yet, try this:
<body onload="start();initialize();onoff('mainmenu',section,'on')" onresize="window.location.reload(false)" topmargin="1" bottommargin="0" leftmargin="0" rightmargin="0">
Yes, this is the same code that "works fine in plain html". Why echo it in PHP if it is static?
Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php