$(document).ready(function() { $(function() { $('#submit').bind('click',function() { showValues(); $.post("ajax/comments.php", str); // $.ajax({method: "post", url: "ajax/comments.php", data: str}); // return false; }); }); function showValues() { var str = $("#add_proj_f").serialize(); $("#results").fadeIn(); $("#results").text(str); } });