Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>It must work. Check this <a href="http://jsfiddle.net/vandalo/gyzRY/" rel="nofollow">fiddle</a>.<br> It seems to me that you're trying to include your bootstrap library twice.</p> <pre><code>&lt;script src="{{ STATIC_URL }}bootstrap/js/bootstrap.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="{{ STATIC_URL }}bootstrap/js/bootstrap.min.js" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>Why don't you just use this library: <a href="http://twitter.github.io/bootstrap/assets/js/bootstrap.js" rel="nofollow">http://twitter.github.io/bootstrap/assets/js/bootstrap.js</a> or it's minified version: <a href="http://twitter.github.io/bootstrap/assets/js/bootstrap.min.js" rel="nofollow">http://twitter.github.io/bootstrap/assets/js/bootstrap.min.js</a> which would include all the components.</p> <p>As an alternative you can include every single twitter bootstrap component (as they do in their <a href="http://twitter.github.io/bootstrap/getting-started.html" rel="nofollow">page</a>) but you cannot include the full package library.</p> <pre><code>&lt;script src="assets/js/bootstrap-transition.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-alert.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-modal.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-dropdown.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-scrollspy.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-tab.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-tooltip.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-popover.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-button.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-collapse.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-carousel.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-typeahead.js"&gt;&lt;/script&gt; &lt;script src="assets/js/bootstrap-affix.js"&gt;&lt;/script&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload