[jQuery] Problem with Chrome firing events correctly

[jQuery] Problem with Chrome firing events correctly

<div><div>I am having trouble getting this piece of code to work correctly in Chrome. It works just fine in in IE7, IE8, and FF. Watching the Chrome javascript console doesn't reveal anything useful.</div><div>
</div>
<div>I manually checked each value in the if statements, and they are all coming back true.</div><div>
</div><div>The textbox is not created or changed using javascript so I shouldn't need to use .live. </div><div>
</div><div>
</div><div>
</div><div>$('#textbox').bind('keyup focus blur', function() {</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>if(LiveSaver.enabled === true && ((new Date()).getTime() - LiveSaver.lastSave) > LiveSaver.saveThreshold) {
</div><div>
</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>LiveSaver.lastSave = (new Date()).getTime();</div><div>
</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>if($('#' + element).val() != LiveSaver.data[LiveSaver.page][element]) {
</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>LiveSaver.add(element, $('#' + element).val());</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>LiveSaver.save();</div>
<div><span class="Apple-tab-span" style="white-space:pre"> </span>}</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>}</div><div>});</div></div><div>
</div>-- Caleb