forked from buckyroberts/Source-Code-from-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path005_events.html
More file actions
41 lines (35 loc) · 1.24 KB
/
005_events.html
File metadata and controls
41 lines (35 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>thenewboston</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/JSXTransformer.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div id="content"></div>
<script type="text/jsx">
var BuckysComponent = React.createClass({
doSomething: function() {
alert("The text displaying is: " + this.props.children);
},
render: function() {
return(
<div>
<h3>{this.props.user}</h3>
<a onClick={this.doSomething} href="#" >Click me</a>
</div>
);
}
});
React.render(
<div>
<BuckysComponent user="Bucky">This guy is awesome</BuckysComponent>
<BuckysComponent user="Emily">She smells like mints</BuckysComponent>
</div>,
document.getElementById('content')
);
</script>
</body>
</html>