Trigger Native Events (except for clicks on links)

Trigger Native Events (except for clicks on links)

<div>On line 2043 of 1.2.3 we exclude native link clicks... Why is this? On my test page at: </div>
<div><a href="http://jdsharp.us/sandbox/jQuery/trigger.html">http://jdsharp.us/sandbox/jQuery/trigger.html</a></div>
<div> </div>
<div>I get different behaviors for FF and IE with FF responding and triggering the native click event and IE( 6 & 7) supressing them.</div>
<div> </div>
<div><strong>Line 2043:</strong></div>
<div>// Trigger the native events (except for clicks on links)
if ( fn && donative !== false && val !== false && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
    this.triggered = true;
    try {
        elem[ type ]();
    // prevent IE from throwing an error for some hidden elements
    } catch (e) {}
}</div>
<div> </div>
<div>Cheers,</div>
<div>-Jonathan</div>