"TEST: Understanding jQuery with Bootstrap"
Bootstrap 4.0.0 Snippet by mrmccormack

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div>
<h3>Understanding jQuery in Bootstrap</h3>
http://fiddle.jshell.net/mrmccormack/qCq8D/
maybe just do jsfiddle...
http://fiddle.jshell.net/mrmccormack/hYAXq/
as not to confuse bootstrap
<hr>
<button>Click me to hide paragraphs</button>
</div>
<div class="row">
<div class="col-sm">
<h1>Heading A</h1>
</div>
<div class="col-sm">
<h1>Heading B</h1>
</div>
<div class="col-sm">
<h1>Heading C</h1>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
h1{
color: red;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
$(document).ready(function(){
$("button").click(function(){
$("h1").hide();
});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: