Forum Moderators: open

Message Too Old, No Replies

Coding Error on Checkout Page - Please Help

Coding triggers an alert in browser

         

Arctrust

2:21 am on Sep 14, 2007 (gmt 0)

10+ Year Member



Hey Guys:

I have a checkout page which generates one of those little yellow warning signs on IE.

Does anyone see anything wrong with the coding in the lines of script below?

Any assistance would be greatly appreciated!

Line Script
109 dlg.document.write("<table width="100%" height="100%">");
110 dlg.document.write("<tr><td align=center valign=middle>");
111 dlg.document.write("<b><font size=2 face=verdana>" + name + "</font></b><br><br>");

Thank you!
ARC

daveVk

7:32 am on Sep 14, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Try changing

109 dlg.document.write("<table width="100%" height="100%">");

to

109 dlg.document.write('<table width="100%" height="100%">');

or

109 dlg.document.write("<table width=100% height=100%>");

[edited by: daveVk at 7:34 am (utc) on Sep. 14, 2007]