если я вас правильно понял то написал вот так
function content_upload(this){
$.ajax({
url: "/userpages/uploadContent.php",
type: "GET",
cache:true,
obj: data: {data:$(obj).find('input').val()},
success: function(data){
$("#dataUpload").html(data);
$("#dataUpload").css('display','none');
$("#dataUpload").fadeIn("slow");
var height_right_side = $('#dataUpload').height();
$('#dataUpload').css('height',height_right_side);
$('#my_pinokio_main_area').css('height',height_right_side+40);
$('#my_account_area').css('height',height_right_side+20);
}
});
}
function button_upload(obj){
console.log(1);
$(".buttonUpload").click(function(){
console.log(2);
content_upload()
});}
В консоли вот это
SyntaxError: missing formal parameter
[Прерывать на этой ошибке]
function content_upload(this){
my_pinokio (строка 380, столбец 24)