Previous Issues - November 2009
This is the second issue of Psychology & Society showcasing papers presented at the Annual Cambridge-LSE Inter-University Postgraduate Conference. This year's conference commemorated a decade of collaboration between these distinguished institutions, and the papers published in this issue reflect the diversity as well as central themes in this ongoing relationship. We hope you find them stimulating, and encourage you to express your thoughts using the rating and comments systems.
All the best,
The Editors
';
$('#Response_Comment'+$(that).attr('id')).html(es);
} else {
var es = '';
$('ext-success-msg', ret).each(function() {
if ($.browser.mozilla) {
es += $(this).html() + '
';
} else {
es += $(this).attr('value') + '
';
}
});
$('#Response_Comment'+$(that).attr('id')).html('
'+es+'');
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
},
complete: function(XMLHttpRequest, textStatus) {
}
});
return false;
});
$('.rat__submit').click( function() {
var that = this;
var s = $('form#rat-form'+$(this).attr('id')).serialize();
$.ajax({
type: 'POST',
url: '/',
data: s,
dataType: 'text/xml',
success: function(data, textStatus) {
ret = data;
if ($('ext-error', ret).size() > 0) {
var es = '';
$('ext-error', ret).each(function() {
if ($.browser.mozilla) {
es += $(this).html() + '
';
} else {
es += $(this).attr('value') + '
';
}
});
es = '
'+es+'
';
$('#Response_Rating'+$(that).attr('id')).html(es);
} else {
var es = '';
$('ext-success-msg', ret).each(function() {
if ($.browser.mozilla) {
es += $(this).html() + '
';
} else {
es += $(this).attr('value') + '
';
}
});
$('#Response_Rating'+$(that).attr('id')).html('
'+es+'');
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
},
complete: function(XMLHttpRequest, textStatus) {
}
});
return false;
});
});