success: function(html){
var halfh = html.height;
$('#contact_'+id).show();
$('#contact_'+id).css({'width':'90%'}).animate({
opacity: '0.6',
height: halfh
}, 500 ,'linear').animate({
opacity: '1',
},500,'linear',function(){ <--- Error on this line
$(this).html(html.content)
});
Note: I changed it all to Double quote like:
opacity: "0.6",
height: halfh
}, 500 ,"linear").animate({
opacity:"1",
},500,"linear",function(){
BUT still same error 🙁
Please help.
Regards
As in my previous comment. There is a trailing comma.