$("#myBtn").bind("click", alert("hello"));
$("#myBtn").click(alert(event));
$("#myBtn").bind("click", function() {
alert("hello");
});
$("#myBtn").click(function() {
alert("hello");
});
$("#myBtn").attachEvent("onclick", function() {
alert("hello");
});