Opened 13 years ago

Closed 13 years ago

Last modified 10 years ago

#4947 closed bug (notabug)

Opera 8 not closed tag form

Reported by: Lexx918 Owned by:
Priority: minor Milestone:
Component: ui.core Version: 1.7.2
Keywords: Cc:
Blocked by: Blocking:

Description

The code starting with strings:

    // Check to see if the browser returns elements by name when

And ended on 30 strings more low:

    root.removeChild( form );

Generates not closed tag <form>. If in imposition right after a tag <body> to put closing tag </form> all works normally. Otherwise any form in the document cannot be sent a type standard button type="subsmit".

Non-working example:

<html>
    <head>
        <title>title</title>
        <script src="jquery-1.3.2.js" type="text/javascript"></script>
    </head>
    <body>
        <form name="f" action="/" method="get">
            <input type="text" name="t" value="" />
            <input type="submit" value="Send" />
        </form>
    </body>
</html>

Working example:

<html>
    <head>
        <title>title</title>
        <script src="jquery-1.3.2.js" type="text/javascript"></script>
    </head>
    <body>
</form>
        <form name="f" action="/" method="get">
            <input type="text" name="t" value="" />
            <input type="submit" value="Send" />
        </form>
    </body>
</html>

It is checked up only in Opera 8.

I know that jQuery should not support Opera8, but people use this browser till now.

Change History (2)

comment:1 Changed 13 years ago by Scott González

Resolution: invalid
Status: newclosed

This has nothing to do with jQuery UI and if the problem only occurs in a browser that jQuery doesn't support, it shouldn't even be listed in jQuery's bug tracker.

comment:2 Changed 10 years ago by Scott González

Milestone: TBD

Milestone TBD deleted

Note: See TracTickets for help on using tickets.