$(document).ready(function(){
  
  //bind form using 'ajaxForm' 
  $('#contact').ajaxForm({  
    target:"#hiddenDIV", 
    beforeSubmit:function() {
       $("#msg").html("<img src=\"http://pixelogue.in/images/site/Icon-Spinner.gif\" /> Sending...");
    },
    success:function(response) {
      if (response=="success") {
        $("#contact").resetForm();
        $("#msg").html("Thank you for your comment.");
        $("#error-msg").empty();

      } else {
        $("#error-msg").html(  $("#hiddenDIV #content ul").html() );
        $("#hiddenDIV").empty();
        $("#msg").empty(); 
      }
    }
  });

});