• Resolved Ivan

    (@gensay)


    By deleting audio vidget from footer, i broke my scripts and other vidgets. How can i solve this problem?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Optimizing Matters

    (@optimizingmatters)

    hmm, looks like you’re asyncing jQuery, can you try not doing that and see if that helps?

    Thread Starter Ivan

    (@gensay)

    still not working, without any async. disabling plugin do the same.
    when i customize theme – works fine, in normal view – broken.

    • This reply was modified 5 years, 9 months ago by Ivan.
    Plugin Author Optimizing Matters

    (@optimizingmatters)

    I indeed do not see an error on the browser console any more, so that’s a start. so what is not working specifically? and (assuming the problem is with scripts) when JS optimization is active, what JS errors do you see on the console?

    Thread Starter Ivan

    (@gensay)

    Error

    TypeError: $ is not a functionl2note.com:789:3
        https://l2note.com/:789
        jQuery 4
            i
            fireWith
            ready
            J

    Script

    /*789*/ $('.kplus').on('click', function() {
       var theClass = $(this).attr('id');
              
       if ($('.text'+theClass).css('display') == 'none') {
        $('.text'+theClass).animate({height: 'show'}, 100);
        $('#'+theClass+'.kplus').addClass('viz');
       } else {
    Thread Starter Ivan

    (@gensay)

    ok, figured it out

    here, if someone need =)

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    good job Ivan ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Broken scripts’ is closed to new replies.