I have noticed that your success function has the parameter "html", and you are trying to add "data" to your elements html()... Change it so these both match:
$.ajax({
type:"POST",
url: "ajax.php",
data:"id="+id ,
success: function(data){
$("#response").html(data);
}
});