Open Elements Error

Hi I cant seem to find any tags that need closing they seem to be all closed and not opened in this line…

   Line 130, Column 7: End tag form seen, but there were open elements.
    </form>
    
    Error Line 130, Column 7: Cannot recover after last error. Any further errors will be ignored.
    </form>

So the form is closing while elements are open.

What page is this on?

Well it coming from my master page which is the front page of the website.

Cool, and which website is this?

whoops its iogproducts.com

Is there something wrong? That brings me to
http://get.adobe.com/shockwave/
even though I already have it

This element is not closed .

<div class="outer_wrapper">

Figure out where you want it to close and add a </div>

I assume you want it right before the </form> so throw an extra </div> there.

huh? :neutral_face:

You know that worked and I was going to do that but in my code it didnt seem like I needed another closing tag…This is what I had before…

 <form id="form1" runat="server">
    <div class="outer_wrapper">
        <div class="header">
            <div class="header_img">
                  <a href="/default.aspx"><img src="images/IOGLOGOFINAL.png" class="logo" alt=""/></a>
            </div>
            <div class="top_links"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>
            <div class="quality_img">
                <img src="images/iog_quality.png" alt="IOG Quality" class="quality" />&nbsp;&nbsp;
            </div>
            <div class="nav">
                <ul id="jsddm">
                    <li><a href="/default.aspx">HOME</a></li>
                    <li><a href="/ABOUTUS.aspx">ABOUT US</a></li>
                    <li><a href="/Products.aspx">PRODUCTS</a>
                        <ul>
							<li><a href="/ShockLabels.aspx">Shock Indicator Labels</a></li>
							<li><a href="/Tilt_Indicator.aspx">Tilt Indicator Label</a></li>
							<li><a href="/Protect_A_Pak.aspx">Protect-A-Pak</a></li>
                            <li><a href="/Omni_G.aspx">Omni-G</a></li>
                            <li><a href="/shock_fuse.aspx">Shock Fuse</a></li>
							<li><a href="/transmonitor.aspx">Trans-Monitor</a></li>
                            <li><a href="/transmonitor_td.aspx">Trans-Monitor TD</a></li>
							<li><a href="/Impact-O-Graph.aspx">Impact-O-Graph</a></li>
                            <li><a href="/DIGI-SHOCK.aspx">Digi-Shock</a></li>
				       </ul>
                    </li>
                    <li><a href="/CONTACT2.aspx">CONTACT US</a></li>
            </ul>
            </div>
        </div>
        <div class="main_content">
            <asp:ContentPlaceHolder ID="MainContent" runat="server">
        
            </asp:ContentPlaceHolder>
        </div>
        <div id="footer">
            <p>
                <a href="https://www.linkedin.com/company/iog-products">
        <img src="images/LINKEDIN.png" alt="IOG Linkedin" style="width:22px;height:22px;border:0;float:right;margin-top:-11px;margin-right:-95px;">
                </a>Follow Us</p>  
                <a href="/CONTACT2.aspx">Contact Us</a> <p class="IOG" style="margin-right:200px">IOG Products, LLC.&nbsp;&nbsp;United States of America
            </p>
        </div>
    </div>       
</form>

I literally went through your code to count. That element I said IS the one unclosed. Either way, you have one extra div open. Find some place to close it :slight_smile: .

to identify tags u might have left open, try to use a editor like notepad which highlights tags, also try to indent your tags in way that shows elements that have been open & also use comments to indicate when elements end, easy way to see these little bugs

2 Likes

Yeah I did…but im using adobe edge code and it tells me when I select a div if unclosed or not thats how I know but I guess the validator reads something else…

I did I used adobe edge code.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.