The following project was added:</
p>";
response += "<table class='response'><tr>";
response += "<td class='hdr'>Project:</td><td>" +
data.name + "</td>";
response += "</tr>\n\t<tr>";
response += "<td class='hdr'>Location:</td><td>" +
data.location + "</td>";
response += "</tr>\n\t<tr>";
response += "<td class='hdr'>Participants:</td><td>"
+ data.participants + "</td>";
response += "</tr>\n\t<tr>";
response += "<td class='hdr'>Link:</td><td><a href='"
+ data.href + "'>" + data.href + "</a></td>\n";
response += "</tr>\n\t<tr>";
if(data.image != "No Image") {
response += "<td class='hdr'>Image:</td><td><img
src='" + data.image + "' /></td>";
response += "</tr>\n\t<tr>";
} else {
response += "<td class='hdr'>Image:</td><td>No Image
For This Project!</td>";
response += "</tr>\n\t<tr>";
}
if(data.error != "") {
response += "<td class='hdr'>Error:</td><td><img
src='" + data.error + "' /></td>";
}
response += "</tr>\n</table>";
$('#responseArea').html(response).show('slow');
}
};
$('#addprojectform').ajaxForm(options);
});
[/code]
The problem is, if I try to upload an image, nothing happens, if I
don't try to upload an image the form goes up to the server, and the
response is sent back as expected. I've tried adding code to the
server side to see if the form even makes it that far, and is doesn't.