Hi I have problems with the script below. The problem I think lies on data that need to be sent to php via AJAX.
jQuery
$(\'.send\').live(\"click\",
change this
data: 'id=' + $(this).attr('id'),
to
data: {id : $(this).attr('id')},
also use on here, live is deprecated
on
live
$('.send').on("click", function(){