EN
jQuery - show element
10 points
In this article, we would like to show you how to show elements using jQuery.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
5
</head>
6
<body>
7
<div id="text" style="display: none;">This is example text...</div>
8
<button id="button">Show text</button>
9
<script>
10
11
$(document).ready(function() {
12
var text = $('#text');
13
14
$('#button').click(function() {
15
text.show();
16
});
17
});
18
19
</script>
20
</body>
21
</html>
xxxxxxxxxx
1
2
<html>
3
<head>
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
5
</head>
6
<body>
7
<div id="text" style="display: none;">This is example text...</div>
8
<button id="button">Show text</button>
9
<script>
10
11
var duration = 1000; // animation duration in milliseconds
12
13
$(document).ready(function() {
14
var text = $('#text');
15
16
$('#button').click(function() {
17
text.show(duration);
18
});
19
});
20
21
</script>
22
</body>
23
</html>