function ChangeSize(){ if ($("#fastfeedback").width() > 200){ $("#fastfeedback").css({"width":"150px", "height":"25px"}); $("#fastfeedback .messageBar").html("Send Email"); $("#fastfeedback textarea").css({"width":"118px","height":"30px", "color":"#ccc"}); $("#fastfeedback .bottomBar").hide(); $("#fastfeedback span").removeClass("restore").addClass("maximize"); $("#fastfeedback label").html("Contact Now"); $(window).trigger("scroll"); }else{ $("#fastfeedback").css({"width":"420px", "height":"260px"}); $("#fastfeedback .messageBar").html("Email your Message here"); $("#fastfeedback textarea").css({"width":"388px","height":"150px", "color":"#000"}); $("#fastfeedback .bottomBar").show(); $("#fastfeedback span").removeClass("maximize").addClass("restore"); $("#fastfeedback label").html("Contact Now"); $(window).trigger("scroll"); } } function createBox(){ var fastfeedback = '
");
$.ajax({
url: "fastfeedback.php",
type: "POST",
data: "mailBody="+$("#fastfeedback textarea").val(),
success: function(text){if (text == 1){$("#fastfeedback .messageBar").html("Success!").css("color", "#006C00");}else{$("#fastfeedback .messageBar").html("Error! Try it again later").css("color", "#AA0000");};},
error: function(e){$("#fastfeedback .messageBar").html("Some Error had happened, try it again later!").css("color", "#AA0000");}
});
});
});