live submit and IE

live submit and IE

$j('.form_reply').live('submit',function(event){
        alert('x');
        event.preventDefault();
    });

<form action="" class="form_reply" method="post">
           
            <input type="submit" name="submit"  value="Send" />
        </form>

this doesent work in IE 7 /8

Is that an bug or is there a workaround?