JSFiddle - React, Tailwind, and code Playground

by rodrigonery

HTML

<!doctype html>
<html lang="pt-BR">
<head>
  <meta charset="utf-8">
  <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.2/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<p>
  <div class="span4 well">
    <form accept-charset="UTF-8" action="" method="">
      <fieldset>
        <textarea class="span4" id="new_message" name="new_message" placeholder="Type in your message" rows="5"></textarea>
          <h6 class="pull-right">320 characters remaining</h6>
        <button class="btn btn-info" id="submit" type="submit">Post New Message</button>
      </fieldset>
    </form>
  </div>
</body>
</html>

JavaScript

(function () {
  var element = document.getElementById('submit');
  element.onclick = (function () {
    alert('Submited!');
  });
}());