Abstract:
Le proposte delle Agenzie per il lavoro
let file = jQuery('.file-drupal').children();
var array_file = [];
file.each(function(){
let valori = [];
valori['href'] = jQuery(this).children("a").attr("href");
valori['nome'] = jQuery(this).children("a").text();
array_file.push(valori);
});
let html = '';
if(array_file.length > 0) {
html += '
Scarica gli allegati
';
html += '
';
}
for( var i in array_file) {
if( array_file[i]['href'] != null ) {
html += ``;
}
}
if(array_file.length > 0) {
html += '
';
jQuery('.allegati-articolo').append(html);
}
jQuery('.img-copertina').find('img').first().remove();
let data_art = jQuery('.fusion-tb-published-date').html();
jQuery('.fusion-tb-published-date').html(data_art.replace("Published On: ", ""));
let cat_art = jQuery('.fusion-tb-categories').html();
jQuery('.fusion-tb-categories').html(cat_art.replace("Categorie: ", ""));