-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (33 loc) · 1.05 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title> GAMING lIBRARY TEST... </title>
<script src="js_library/Gaming_Library.js"></script>
<script src="js_library/Gaming_Library2.js"></script>
<script>
window.onload = function(){
//console.log($('div').css({"background": "blue", "color": "white"}));
console.log(Hgl('div').text());
//alert($('div').html());
}
</script>
</head>
<body>
<div> without id or class we live </div>
<input/>
<div class="referencing_class" > Oh master we are the class </div>
<div id="testing_by_id"> called us by id </div>
<h2> Features You can try </h2>
<ul>
<li>
<b>Attribute controls</b> <br/> You can get and set attributes like Jquery <code>$("div").attr(attribute, value);</code><br/>
</li>
<li>
<b> Html feature </b> <br/> Getting the entire html tag <code> $("div").html(); </code><br/>
</li>
<li>
<b> Values Control </b> <br/> getting the values and setting the values of an input element <code> $("div").val(value);</code><br/>
</li>
</ul>
</body>
</html>