I have a php page that has multiple forms on it, and I want the jquery to hide each form after submit is clicked (without refreshing the page). The id's of the forms are dynamically generated and unique each time the php page is created.
If I don't use preventDefault, then the script below submits the data, but it refreshes the page (which I don't want). If I use preventDefault, the form still submits, but with no data (the serialize does not appear to work).
<script>
$(document).ready(function() {
$(".connection").click(function(e) {
e.preventDefault();
var data = $(this).serialize();
var element = $(this);
var connectid = element.attr("id");
$.ajax({
url: "/beta/membersarea.php",
type: "POST",
cache: false,
data: data,
success: function(data) {
$("#connected_" + connectid).hide();
}
});
});
});
</script>