﻿$(function() {
    $('form').attr('action', '');

	$('.minilistcontainer img.removeperson').click(function() {
        var personid = $(this).parent('div').parent('div').attr('id');
		var thisParam = $(this);

        $.ajax({
            type: 'post',
            url: 'deleteperson.php',
            data: 'dpid=' + personid,

            success: function(deleteperson) {
                $(thisParam).parent('div').parent('div').fadeOut('500');
				
            }

        });
								
		
    });

});
	
