$(document).ready(function() {
$("div > a").click(function(event){
var parentid = $(this).parent().attr("id");
alert("div#" + parentid + " > span");
if ($("div#" + parentid + " > span").text() == "have not requested") {
// below will be bblid:parentid; 1 is for testing.
$.post("brownbag-request.php", {bblid : parentid, request : "add"}, function(data){
$("div#" + parentid + " > span").replaceWith("<span style=\"color: #00ff00;\">have re
quested</span>");
$("div#" + parentid + " > a").text("Cancel my lunch for this seminar.");
});
} else {
$.post("brownbag-request.php", {bblid : parentid, request : "remove"}, function(data){
$("div#" + parentid + " > span").replaceWith("<span style=\"color: #ff0000;\">have no
t requested</span>");
$("div#" + parentid + " > a").text("Request a lunch for this seminar.");
});
}
event.preventDefault();
});
});