My intro wont go away

Hello guys i have a site for my bot (https://cooki.cuurle.tk/) i want to make an intro a spinning cookie gif but make it disappear from a time but it just stays there

js code (in .js file)

function cringe() {
        $('#preloader').fadeOut('slow', function() {
            $(this).remove();
        })
    }
    setTimeout(cringe, 1500)```
//html file intro code under this
<body class="bg-black muli">
    <style>
         #preloader {
             position: fixed;
             left: 0;
             top: 0;
             z-index: 9999999;
             width: 100%;
             height: 100%;
             overflow: hidden;
             background: #303030 url(https://cdn.discordapp.com/emojis/833064210404999260.gif?v=1) no-repeat center center;
                          color: #303030;
         }
    </style>
    <div id="preloader"></div>```

It looks like you’re using the “Slim” version of jquery which does not include the animation functions. If you switch to the full version I think this should work.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.