[jQuery] Problem with IE6 - a "click" event doesn't work

[jQuery] Problem with IE6 - a "click" event doesn't work


Hello,
I'm having trouble to make IE accept a "click" event while everythink
works fine with Mozilla. Here's a sample of my code :
$('#add').click(function(){
        $('#spinner').show();
        $('#dernier_enregistrement').hide(1000);
        var type='add';
        $('#output1').load('post_form.php', {type:type}, function(){
            $('#myForm').ajaxForm(options);
            $('#myForm').show();
            $('#spinner').hide();
        });
        return false;
});
Do you have any idea what's wrong or what I should do to repair the
problem ?
Thanks !
Ced