I'm working on this site: http://dev.rjlacount.com/treinaAronson-test
The problem I'm having is with the contact form (click the contact button on the top left to slide it open).
I'm using the following jQuery to cause the contact form to slide closed on esc key press or clicking outside of the open panel:
$(document).bind({
keydown:function(e) {
if (e.keyCode == 27 ) {
$("#panel").slideUp("3000");
$("form#change-form-2")[0].reset();
$('#fade , .popup_block').fadeOut(function() {
$('#fade').remove(); //fade them both out
});
}
}, click: function(e) {
$("#panel").slideUp("3000");
}
});
$('#flip, #panel').bind('click', function(e){return false});
This works for what I need it to do, but is disabling the functionality of my submit button. It is also (although this is a more minor issue) causing the panel to close if I right-click anywhere. I'm pretty new to Javascript; would anybody mind helping me prevent this from disabling the functionality of the contact button?
Any advice would be greatly appreciated!