Skip to main content

Search and Top Navigation

#4947 closed bug (notabug)

Opened November 09, 2009 01:25PM UTC

Closed November 10, 2009 02:32AM UTC

Last modified October 11, 2012 09:15PM UTC

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.

Attachments (0)
Change History (2)

Changed November 10, 2009 02:32AM UTC by scottgonzalez comment:1

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.

Changed October 11, 2012 09:15PM UTC by scottgonzalez comment:2

milestone: TBD

Milestone TBD deleted