-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
48 lines (47 loc) · 1.18 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
function changeColor(){
$(this).css('background-color', 'orange');
// $(this) === this : false
// $(this)[0] === this : true
}
/*function paraClick(){
alert("Para Clicked.")
}
function addDiv(){
$('button').after('<p class="pClass">Para</p>');
}*/
$(document).ready(function(){
$('li').click(changeColor);
// console.log($('div').css('background-color'));
// $('div').css('background-color', 'yellow');
// $('button').click(addDiv);
// // $('.pClass').click(paraClick); //will not work
// $(document).on('click','.pClass',paraClick); //$(PARENT).on(EVENT,SELECTOR,FUNCTION)
// var text = $('#test').text();
// var html = $('#test').html();
// $('#test').after(text);
// // $('#test').after(html);
/*Other EventHandlers:
// change
// after
// before
// insertAfter
// insertBefore
// next
// prev
// css
// eq(0).css
// eq(0).siblings*/
// mouseenter
// mouseout
// $('div.a').html('123');
// $('span.a').html('456');
//selectors: ('tag')('#id')('.class')('tag#id')('tag.class')
/*$('#randomDiv').hover(function(){
console.log("mouse hover.");
},function(){
console.log("mouse not hover.")
});*/
});
/*function print_console() {
console.log("Saurabh");
};*/