Previous Issues - December 2011
This issue of Psychology & Society presents a series of individual papers that were independently reviewed and accepted for publication. Further papers for this issue are still being processed and will be added as they become available.
';
$('#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;
});
});