This content has been marked as final.
Show 5 replies
-
1. Re: Layout view blank, javascript is problem, fix?
(JonFritz) Jun 10, 2008 9:27 AM (in response to videodad)The problem is actually your double body tag:
< body onLoad="javascript:changeImage()" >
< body bgcolor="#EEEEEE" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preloadImages();" >
You need to combine your onloads in the second body tag and completely remove the first. -
2. Re: Layout view blank, javascript is problem, fix?
videodad Jun 10, 2008 9:51 AM (in response to videodad)Awesome. I knew it was something simple for someone who knows what they are doing. What does it look like when you add the first one to the second? Is there just a space, or comma?
Thanks. -
3. Re: Layout view blank, javascript is problem, fix?
(JonFritz) Jun 10, 2008 10:22 AM (in response to videodad)< body bgcolor="#EEEEEE" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preloadImages(); changeImage();" >
I'm not 100% sure, but it should be just a semi colon. -
4. Re: Layout view blank, javascript is problem, fix?
videodad Jun 10, 2008 10:57 AM (in response to videodad)You are absolutely correct. Thanks a million. -
5. Re: Layout view blank, javascript is problem, fix?
(JonFritz) Jun 10, 2008 12:56 PM (in response to videodad)No problem.
