I have a form with buttons I do not what to Submit the form, but they are (necessarily) submit buttons. I\'ve given them the class \"cancel\" and on the first click they are can
Why not just have a cancel function?
Change your button to be something like
And then add a listener to it with jQuery
$(function() { $("#Pet3btncat").live('click',function() { $('#myform.input').html(''); }); });