-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
57 lines (54 loc) · 1.02 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
$(document).ready(function() {
console.log("ready!");
$("#link1").on("click", function(event) {
alert("You clicked me!")
});
$("#container")
.css({
"height":"100px",
"background-color": "blue"})
.on("click",function(event) {
$(this).css({"background-color": "green"})
})
.on("mouseout",function(event) {
$(this).css({"background-color": "purple"})
});
$("#form1").append(
$("<h3/>").text("Contact Form"),
$("<p/>").text("This is my form."),
$("<form/>", {
action: '#',
method: '#',
})
.append(
$("<input/>", {
type: 'text',
id: 'vname',
name: 'name',
placeholder: 'Your Name'
}),
$("<br/>"),
$("<input/>", {
type: 'text',
id: 'vemail',
name: 'email',
placeholder: 'Your Email'
}),
$("<br/>"),
$("<textarea/>", {
rows: '5px',
cols: '27px',
type: 'text',
id: 'vmsg',
name: 'msg',
placeholder: 'Message'
}),
$("<br/>"),
$("<input/>", {
type: 'submit',
id: 'submit',
value: 'Submit'
})
)
)
});