Skip to content

Commit 5640cc8

Browse files
2 - A Basic Selector
1 parent bb9938c commit 5640cc8

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

fasttracktojquery/index.html

+13-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
<!-- Bootstrap CSS -->
99
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
10+
<style>
11+
/*body {
12+
background-color: red;
13+
}*/
14+
</style>
15+
1016
</head>
1117
<body>
1218
<h1>Hello, world!</h1>
@@ -17,9 +23,14 @@ <h1>Hello, world!</h1>
1723

1824
<script type="text/javascript">
1925
$(document).ready(function(){
20-
alert("Hello")
21-
})
26+
// jquery is ready to roll
27+
// $(selector)
28+
// $('body').css("background-color", "red")
2229

30+
setTimeout(function(){
31+
$('body').css("background-color", "red")
32+
}, 5000) // in ms
33+
})
2334
</script>
2435

2536

0 commit comments

Comments
 (0)