Changes between Initial Version and Version 3 of Ticket #134
- Timestamp:
- Nov 17, 2006, 5:25:25 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #134
-
Property
Type
changed from
bug
toenhancement
-
Property
Summary
changed from
Some DOM methods
toTrigger browser event
-
Property
Type
changed from
-
Ticket #134 – Description
initial v3 1 Adding: .submit(), .reset(), .getAttribute(), .setAttribute(), .removeAttribute() would save a lot of... hassle. 1 If you trigger an event $(...).submit(), .focus(), .blur(), .select(), .click(), etc. It should trigger the DOM Element's internal event function. 2 3 For example: 4 $(foo).click() 5 would also trigger: 6 foo.click() 7 (if it exists)