Ta bort inline style på Active Campaign embeds

/* Remove inline <style></style> added by Active Campaign embeds */
(function($) {

	$.fn.removeACStyle = function() {

		let acForm = $('._form');

		if (acForm.length == 0)
			return;

		acForm.siblings('style').remove();
		acForm.parent().siblings('style').remove();
	}

	$(function() {
		$('body').removeACStyle();
	});

})(jQuery);

Författare: Erik

Erik har jobbat med webb professionellt sedan 2008. Från 2005 till 2008 studerades webb på ING/JTH och dessförinnan skapades webb på all fritid. Första sajten byggdes någon gång mellan 1996-1998.