/* add the notification to the UI */
$("#document_0").children('span.a').append('
Document was successfully added to My Files.
');
/* in 2.5 seconds, fade out this notification */
setTimeout( function() {
$("#document_0").find('.addsuccess').fadeOut('slow', function() { $(this).remove(); });
}, 2500);
/* add to cart UI */
$("#myfiles").find('ul').children('li:last').before( 'RemoveColumbus Housing | Columbus Cost of LivingRemove this from
My Files?
YesNo ' );
$("#myfiles").find('li.empty').remove();
$("#myfiles").find('li.actions').show();