Bug Tracker

Changes between Initial Version and Version 3 of Ticket #134


Ignore:
Timestamp:
Nov 17, 2006, 5:25:25 PM (16 years ago)
Author:
john
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #134

    • Property Type changed from bug to enhancement
    • Property Summary changed from Some DOM methods to Trigger browser event
  • Ticket #134 – Description

    initial v3  
    1 Adding: .submit(), .reset(), .getAttribute(), .setAttribute(), .removeAttribute() would save a lot of... hassle.
     1If you trigger an event $(...).submit(), .focus(), .blur(), .select(), .click(), etc. It should trigger the DOM Element's internal event function.
     2
     3For example:
     4  $(foo).click()
     5would also trigger:
     6  foo.click()
     7(if it exists)