$(document).ready(function() { var minimum_value = 1; $("#submit").click(function() { if($("#input_amount").val() > null) { if($("#input_amount").val() < minimum_value) { $("#msg_noamount").hide(); $("#msg_moreamount").fadeIn(); return false; } else { $("#msg_moreamount").hide(); $("#msg_noamount").hide(); $("#msg_activity").fadeIn(); var ids = { name: $("#name").val(), website: $("#website").val(), logo: $("#logo").val(), amount: $("#input_amount").val(), email: $("#email").val(), comment: $("#comment").val() }; $.ajax({ type: "post", url: "http://www.onlineleaf.com/Donate/", data: ids, dataType: "script", success: function() { $('#submitfirst').trigger("click"); } }); return false; } } else { $("#msg_moreamount").hide(); $("#msg_noamount").fadeIn(); return false; } }); $('#donations').newsScroll({ speed: 2000, delay: 10000 }); $("textarea.autogrow").autogrow({ minHeight: 10, lineHeight: 18 }); });