#5652 closed bug (fixed)
focus(), blur(), and submit() no longer working in 1.4
Reported by: | ixpleo | Owned by: | |
---|---|---|---|
Priority: | critical | Milestone: | 1.4 |
Component: | event | Version: | 1.4a2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When testing 1.4a1 in a live application (dev version is running 1.3.2), focus(), blur(), and submit() no longer work.
I created a barebones, test html file to verify. There is a form with a hidden input in the body, and these were the tests:
using document.getElementById().[focus|blur|submit]() works just fine, but not $("#inputIDHere").[focus|blur|submit]()
I haven't tested other events to verify whether or not they are working - just blur(), focus(), and submit()
Attachments (2)
Change History (10)
comment:1 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Changed 13 years ago by
Attachment: | ticket5652.html added |
---|
Test File Showing focus(), blur(), and submit() bug
comment:2 Changed 13 years ago by
Resolution: | invalid |
---|---|
Status: | closed → reopened |
Reopened and attached test file showing jQuery bug for focus(), blur(), and submit()
Also found a blog post online using 1.4a1 that documents the same problem with blur in 1.4a1:
http://www.bennadel.com/index.cfm?dax=blog:1772.view
Here is the relevant portion of his post:
Reset and focus the first input element. NOTE: There appears to be a bug here where jQuery cannot use its own FOCUS method. I had to get the raw NODE to do that. newForm.find( ":text" )
.val( "" )
.get( 0 ).focus()
;
comment:3 Changed 13 years ago by
From the test case, it looks like this still works for IE but not Firefox, Opera, or Safari.
Changed 13 years ago by
Attachment: | native.patch added |
---|
This patch fixes the issue for me, but I don't know what side effects might be. I have not run the test suite against this patch.
comment:6 Changed 13 years ago by
I've tested the attached test case with 1.4a2 and can confirm this bug has been fixed (as adamlogic mentioned).
comment:7 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Version: | 1.4a1 → 1.4a2 |
comment:8 Changed 13 years ago by
Component: | unfilled → event |
---|
Please reopen and attach or link to your test file. Thanks!