by bkmtt » Thu May 03, 2012 8:27 am
Hi,
Thanks for the help, much appreciated.
Had seen that video before, nice features addition.
Along a similar line, I was checking for html validation, and ran across some issues. There is a consistent three error pattern, which follows:
Line 195, Column 37: end tag for "select" which is not finished
<select name="os0" /><option value="Product Name">Prod…
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.
The above error info is repeated again.
Line 195, Column 63: document type does not allow element "option" here; assuming missing "select" start-tag
…name="os0" /><option value="Product Name">Product Name - 00.00 USD</option><option …
Any suggestions on how to resolve these errors?
Thanks again for the help.