Reputation: 71
I am trying to make a local JavaScript search option for this open-source website. It's built with Jekyll (Feeling responsive theme) + Tipue Search for Jekyll.
However, I keep getting:
jQuery.Deferred exception: $(...).tipuesearch is not a function @http://learn.neurotechedu.com/search/:1:33
Its very frustrating, because I feel like i have all files and links in place but the called function is still not connecting with the js file. Could anyone give me a hand?
I'm a noob :(
Upvotes: 1
Views: 326
Reputation: 1156
I believe the issue is from including jQuery twice; once from the google apis like in the Tipque instructions, and once from javascript.min.js. I'd try removing the include of javascript.min.js on this page (since it's jQuery 2.1.1 and you want jQuery 3.2.1 for Tipque search as of this writing) and see if your search works now.
Upvotes: 0
Reputation: 716
You do not link to your resource correctly. It is showing a 404 response for multiple assets. So you are trying to reference a function that has not been defined yet.
Upvotes: 1