Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//fb.me/react-with-addons-0.13.1.js"></script>
  <script src="https://fb.me/JSXTransformer-0.13.3.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  
  <div id="test"></div>
  <script type="text/jsx">
    
    var NavigationDiv = React.createClass({
    getInitialState: function () {
        return {
            liked: false
        };
    },
    handleClick: function (event) {
        this.setState({
            liked: !this.state.liked
        });
    },
    fireEvent: function () {
        alert("am i being clicked");
        this.handleClick();
    },
    render: function () {
    var text = this.state.liked ? 'like' : 'haven\'t liked';
        return ( 
     <button onClick = {this.fireEvent} > You Click to toggle. {text} </button>
    );
  }
});
React.render(<NavigationDiv /> , document.body);
   
    
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
Ositoozypro
0viewers