-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
157 lines (89 loc) · 3.03 KB
/
script.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
//Deprecated function
//write your code in document.ready function to load our funtion properly
$(document).ready(function (){
})
// new function for document.ready()
$(function(){
console.log("Welcome to The Ultimate jQuery Course!🚀");
//Basics for Jquery
//Syntax
// $- for Accessing JQuery
// (Selector)-- Selector for jQuery
// action(callback function)-- Action to perform
// $(".show").hide();// class selector
// $(".second").hide();
// id selector
// $("#third").hide();
// different types of event
// common used elements
// old event selector click event
// $("#button1").click(function(){
// $(".second").hide()
// })
$("body").keydown(function(event){
console.log(event.which)
console.log(event.code)
// console.log(event.)
if(event.which==72){
//toggle function between sho and hide do the reverse of the current
// $("#keycheck").toggle(2000,function(){
// console.log("task completed")
// })
}
})
$("body").on("keyup",function(event){
console.log(event.code)
console.log("from keyup function");
})
$("body").on("keydown",function(event){
console.log(event.code)
console.log("from keyup function");
})
// Jquery fade effects
// fade in
// fade out
// fadetogglee
// fadeto
// new click event
//fade togglle fade effect
// $("#fadebutton").on("click",function(){
// $("#fadetest").fadeOut();
// })
// $("#fadebutton").on("click",function(){
// $("#fadetest").fadeToggle();
// })
// $("#fadebutton").on("click",function(){
// $("#fadetest").fadeTo("slow",0);
// })
// $("#fadebutton").on("click",function(){
// $("#fadetest").slideToggle();
// })
//passing spped in ms
$("#fadebutton").on("click",function(){
$("#fadetest").slideToggle("fast");
})
//animate method
// create custom animation
//spped and callback
// pass object of css prooperites
$("#boxanimate").on("click",function(){
$(".box").animate({
width:"+=200px",
height:"200px",
fontSize:"20px",
},"slow")
})
// dom manupulation
// .text used to set or get the text contrne tof selectd elements
// .html used to set or get the content with html markup of selected elements
//.val() used to set or get the valu of form fields
$("#btn_manipulation").on("click",function(){
// $("#third").text("Jquery Tutorial")
// alert(($("#third").text()))
alert($("#third").html())
$("#third").html("<em>THis is the html</em>")
// console.log($(".show").html());
alert($("#third").html())
// alert($("#valtext").val())
})
})