Search code examples
javascriptjquerycssjsfiddletag-it

Tag-it not working on jsfiddle


$("#fruitTags").tagit();
<input id="fruitTags" placeholder="Enter Your Fruit Tags" ></input>

I am trying to get my tag-it setup working on jsfiddle. I have replicated this example: http://jsfiddle.net/Z3HDh/49/

I cannot figure out why my version (https://jsfiddle.net/7fuho9eu/3/) is not working. Here is my code:

I've added the following resources:


Solution

  • The problem is your link uses https, my friend. When the connection is secure there tend to be some resource inclusion problems.

    As you can see the reference link you've provided has a http:// link and yours is with an s

    Hope this helped.

    Cheers!!