Если не запутался то как то так.
jQuery(function ( $ ) {
$('.btnReview').click(function ( e ) {
$('.Item1').text() === 'product1' &&
$.ajax({
type: 'POST',
url: 'http://smktesting.herokuapp.com/api/reviews/1',
data: {
'rate': $(':radio[name=star]:checked').val(),
'text': $('#content').val()
},
headers: {
'Authorization': 'Token ' + jsonProductLogin.token
},
success: function () {
$('#content').val('');
}
});
return false;
});
});