-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathPart1_Basic_jQuery.js
82 lines (56 loc) · 1.42 KB
/
Part1_Basic_jQuery.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// This is the code we typed into the console
// Try just the dollar sign:
$
// Grab the h1 header:
$('h1');
// Save it to variable:
var x = $('h1');
// You can easily edit the css properties:
x.css("color",'red');
x.css("background","blue");
// Multiple CSS properties at once:
var newCSS = {
"color":"white",
"background":"blue",
"border":"red"
}
x.css(newCSS);
// Grabbing multiple returns an array-like object:
var listItems = $('li');
// Change all items:
listItems.css("color",'red');
// Grab a particular index item:
listItems.eq(0).css('color','blue');
listItems.eq(1).css('color','purple');
// LastItem
listItems.eq(-1).css('background','red');
///////////////////////
/// TEXT and HTML ////
/////////////////////
// Grabbing Text:
$('h1').text()
// Changing Text:
$('h1').text("Brand New Text!")
// Grabbing HTML
$('h1').html()
// Changing HTML
$('h1').html("<em>Now in Italics</em>")
////////////////////////////
// ATTRIBUTES and VALUES //
//////////////////////////
// Changing an attribute
$("input").eq(1).attr('type','checkbox');
// Changing values
$("input").eq(0).attr('value',"BRAND NEW VALUE");
// Can do this more directly:
$("input").eq(0).val("cleared up");
/////////////////
// CLASSES /////
///////////////
// Add a Class
$('h2').addClass("turnRed")
// Remove a Class
$("h2").removeClass("turnRed");
// Toggle the Class on and Off
$("h3").addClass("turnBlue");
$("h3").toggleClass("turnBlue");