Skip to main content

Bug Tracker

Side navigation

#10939 closed bug (invalid)

Opened December 01, 2011 04:55PM UTC

Closed December 01, 2011 05:00PM UTC

Last modified December 01, 2011 05:24PM UTC

form.attr('method') returns undefined in IE7

Reported by: f1sherman Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.7.1
Keywords: Cc:
Blocked by: Blocking:
Description

See the following jsfiddle:

http://jsfiddle.net/Q4jhX/

Attachments (0)
Change History (2)

Changed December 01, 2011 05:00PM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed

Only GET and POST are allowed by the spec.

http://www.w3.org/TR/html4/interact/forms.html#h-17.13.1

So if $('form').attr('method') returns PUT but the form submit still does not work, it would not really advance your cause.

Changed December 01, 2011 05:24PM UTC by f1sherman comment:2

I see, thanks for clarifying