This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
$(document).ready(function () { | |
let cartoonsCounter = 1; | |
let serialsCounter = 1; | |
const cartoon = `<div class="c-${cartoonsCounter}-wrapper rounded bg-gray-50"> | |
<input type="text" required class="c-${cartoonsCounter} w-80 text-center flex flex-col"> | |
<div class="serials mx-40"> | |
</div> | |
</div>`; |