|
|
|
function removeMedia($) {
|
|
try {
|
|
|
|
$('img').remove();
|
|
|
|
|
|
$('video, source[type^="video"], object, embed').remove();
|
|
|
|
|
|
$('audio, source[type^="audio"]').remove();
|
|
|
|
|
|
$('canvas').remove();
|
|
|
|
|
|
$('svg').remove();
|
|
|
|
|
|
$('picture').remove();
|
|
|
|
|
|
$('iframe').remove();
|
|
|
|
|
|
$('[poster]').removeAttr('poster');
|
|
$('[background]').removeAttr('background');
|
|
|
|
|
|
$('*[style*="background"]').each((_, el) => {
|
|
const $el = $(el);
|
|
const style = $el.attr('style');
|
|
if (style) {
|
|
const newStyle = style.replace(/background(-image)?:\s*url\([^)]+\);?/gi, '');
|
|
if (newStyle.trim()) {
|
|
$el.attr('style', newStyle);
|
|
} else {
|
|
$el.removeAttr('style');
|
|
}
|
|
}
|
|
});
|
|
|
|
return {
|
|
success: true,
|
|
error: null
|
|
};
|
|
} catch (err) {
|
|
return {
|
|
success: false,
|
|
error: err.message
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
removeMedia
|
|
}; |