It looks like you're new here. If you want to get involved, click one of these buttons!
onAllComplete: function() {
location.reload();
}
$('#file_upload').uploadify({
'fileSizeLimit' : '1000KB',
'swf' : 'uploadify/uploadify.swf',
'uploader' : 'uploadify/uploadify.php',
'height' : '20',
'buttonText' : 'Banner Image',
'onAllComplete': function() {
location.reload();
}
});
$("a#profile_edit").live('click' ,function(event) {
event.preventDefault();
$.ajax({
url: "ajax/profile.php?functions=edit",
type: 'POST',
dataType: 'json',
data: {
content: $('textarea.edit_profile_content').val()
},
error: function(){
alert("Oops... seems to be a problem retrieving data. function Profile Edit")
},
success: function(response) {
$('div.profile_edit').html("<a href='' id='update_profile'>Update<a/><input type='file' name='file_upload' id='file_upload'/>");
$('#file_upload').uploadify({
'fileSizeLimit' : '1000KB',
'swf' : 'uploadify/uploadify.swf',
'uploader' : 'uploadify/uploadify.php',
'height' : '20',
'buttonText' : 'Banner Image'
'onAllComplete': function() {
alert("done");
}
});
$('div.profile_bio').html("<textarea rows='16' cols='9' size='20' class='edit_profile_content'></textarea>");
$('textarea.edit_profile_content').html(response.display);
}
});
});