We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9938c commit 5640cc8Copy full SHA for 5640cc8
fasttracktojquery/index.html
@@ -7,6 +7,12 @@
7
8
<!-- Bootstrap CSS -->
9
<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
+
16
</head>
17
<body>
18
<h1>Hello, world!</h1>
@@ -17,9 +23,14 @@ <h1>Hello, world!</h1>
23
24
<script type="text/javascript">
19
25
$(document).ready(function(){
20
- alert("Hello")
21
- })
26
+ // jquery is ready to roll
27
+ // $(selector)
28
+ // $('body').css("background-color", "red")
22
29
30
+ setTimeout(function(){
31
+ $('body').css("background-color", "red")
32
+ }, 5000) // in ms
33
+ })
34
</script>
35
36
0 commit comments