Viewing 1 replies (of 1 total)
  • Not sure if this will you. On my website I have some custom code that was loading jquery.js I removed this and found that I had a different problem TypeError: $(...) is not a function

    I fixed this by adding the following to my custom code.

    var $jmap = jQuery.noConflict();
    
    $jmap(function() {
        <!-- more code here -->
    });
    

    No more anonymous functions.

    • This reply was modified 5 years, 2 months ago by xcflyer.
Viewing 1 replies (of 1 total)
  • The topic ‘stickThis and wordpress’ is closed to new replies.