I'd like to intercept the onclick event of a button (not submit) before the page posts back from the onclick.
I'm having some trouble:
$(document).ready() { function() {
function validate() {
...
}
var oldOnClick = $("input[value=OK]").attr("onclick");
$("input[value=OK]").attr("onclick", "if(!validate()) { return false; }" + oldOnClick));
});