/* MAMOKA TOOL SCRIPTS ---------------------------------------------- In uso condiviso sui vari portali comune.fe.it ---------------------------------------------- 2017-07-20 */ var mmk = {}; // PULIZIA DEL CODICE mmk.tidy = function (selector) { var selector = selector || 'body'; // Pulisci codice cataloghi priscilla if (!$('div.priscillaskin').length) { $('div.priscillacatalog', $(selector)).each(function(){ $('img', this).attr('style', ''); $(this).next('div[style^="clear"]').remove(); $('>div:not(.catalogo)>a', this).remove(); $('div[style^="clear"]', this).remove(); $('>div.catalogo',this).css('clear', 'both'); // paginazione catalogo $('>div:not(.catalogo)',this).unwrap().children().unwrap(); }); } return this; } // Standard cross-site tasks if (window.jQuery) $(document).ready(function(){ mmk.tidy('.catalogo-foto'); });