Sunday, 27 October 2019

How to initialize bootstrap-classify?

I am trying to make a simple static page that uses this bootstrap-classify library. I tried looking at several pieces of its code for hints on how to implement it. I'm pretty sure at least one step needed is to add .bs-classify to an HTML element but so far I haven't gotten anything useful to happen. I don't have any errors on the js console and all resources are loading without issues.

Below is a snippet of what is in index.html

<link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" integrity="sha256-G7A4JrJjJlFqP0yamznwPjAApIKPkadeHfyIwiaa9e0=" crossorigin="anonymous"></script>


<script src="js/ism-u.config.js"></script>
<script src="js/ism.js"></script>
<script src="js/bootstrap-classify.js"></script>
<link href="css/bootstrap-classify.css" rel="stylesheet">


from How to initialize bootstrap-classify?

No comments:

Post a Comment