// Get the butterflies container const butterfliesContainer = document.querySelector(‘.butterflies’); // Create a function to generate a butterfly function createButterfly() { const butterfly = document.createElement(‘div’); butterfly.className = ‘butterfly’; butterfliesContainer.appendChild(butterfly); return butterfly; } // Create multiple butterflies for (let i = 0;…Continue reading
$(document).ready(function () { $(“div.description:contains(‘Maximum 5 characters’)”).hide(); var badge = document.querySelector(‘select[name=”madara-manga-badge”]’); var status = document.querySelector(‘select[name=”madara-manga-status”]’); if (badge) { badge.disabled = true; } if (status) { status.disabled = true; } var chapterCreateVolume = document.getElementById(‘chapter-create-volume’); if (chapterCreateVolume){ chapterCreateVolume.disabled = true; } // Create…Continue reading
document.getElementById(‘censorTextBtn’).addEventListener(‘click’, function () { var uncensoredText = document.getElementById(‘uncensoredText’).innerHTML; var censoredWords = [“pornhub”, “fucked”, “orgasm”, “semen”,”cock”, “ejaculated”, “ejaculating”,”ejaculate”, “fuck”, “fucking”,”clit”, “ejaculation”, “vagina”, “cunt”, “tits”,”titties”, “masochist”, “masturbate”, “masturbated”,”dildo”, “slut”, “motherfucker”,”cunnilingus”, “cocks”, “blowjobs”,”whore”, “whores”, “cum”,”cums”, “porn”, “pornography”,”clitoris”, “shits”, “shit”, “penis”, “breast”, “breasts”, “nipple”,…Continue reading
document.querySelectorAll(‘li’).forEach(function(li) { const chapterReleaseDates = li.querySelectorAll(‘.chapter-release-date’); if (chapterReleaseDates.length > 1) { chapterReleaseDates.forEach(function(date) { if (date.classList.contains(‘salmon’)) { date.style.display = ‘none’; } }); } });Continue reading