[jQuery] preventing redirection when opening modal dialog box

[jQuery] preventing redirection when opening modal dialog box


hi,
I have this snippet which works fine in Firefox but not in IE6/7.
Somehow in IE instead of opening the modal dialog box, it gets posted
to the submit page when the button with "btnAddSession" Id gets
clicked.
$("#btnAddSession").click(function(){
$("#addproductsForm").dialog("open");
return false;
});
FYI: I also tried converting from button to link. It works in IE but
it throws a javascript error on click. Thanks in advance.