aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-08-27 09:17:20 -0700
committerMark Otto <[email protected]>2012-08-27 09:17:20 -0700
commit72f176d1f513b936483d37cf3b50f3c21a3d838e (patch)
tree066984daa2799db16138c742648226f1908fd6f4 /docs/getting-started.html
parent1b8f4f5bc5f72ada4395c40a70e645a09eac593c (diff)
downloadbootstrap-72f176d1f513b936483d37cf3b50f3c21a3d838e.tar.xz
bootstrap-72f176d1f513b936483d37cf3b50f3c21a3d838e.zip
fixes #4748: document jquery dependency better
Diffstat (limited to 'docs/getting-started.html')
-rw-r--r--docs/getting-started.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/getting-started.html b/docs/getting-started.html
index 63ed7e7e4..ee766eeb1 100644
--- a/docs/getting-started.html
+++ b/docs/getting-started.html
@@ -144,6 +144,7 @@
└── README.md
</pre>
<p>This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). The image files are compressed using <a href="http://imageoptim.com/">ImageOptim</a>, a Mac app for compressing PNGs.</p>
+ <p>Please note that all JavaScript plugins require jQuery to be included.</p>
</section>
@@ -208,6 +209,7 @@
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;Hello, world!&lt;/h1&gt;
+ &lt;script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
@@ -222,6 +224,7 @@
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt;Hello, world!&lt;/h1&gt;
+ &lt;script src="http://code.jquery.com/jquery-latest.js"&gt;&lt;/script&gt;
&lt;script src="js/bootstrap.min.js"&gt;&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;