jQuery(document).ready(function(){jQuery("#btnSaveComment").click(function(){var Product=jQuery("#ProductId").val(),Comment=jQuery("#txtComment").val();jQuery.ajax({url:"/Product/SaveComment",type:"POST",dataType:"json",data:{comment:Comment,productId:Product},success:function(data){jQuery("#txtComment").val("");alert(data.message)}})})});