Skip to content

Instantly share code, notes, and snippets.

@jimbojsb
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jimbojsb/e867ba4fb363254808ff to your computer and use it in GitHub Desktop.
Save jimbojsb/e867ba4fb363254808ff to your computer and use it in GitHub Desktop.
Wes Finder - Javascript Exercise
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<!-- fill in javascript as necessary -->
<!-- make the characters used counter live-updating as you type -->
<!-- if the user tries to submit the form with more than 140 characters, display a useful error message -->
<script type="text/javascript">
</script>
<!--fill in styles as needed to make this visually appealing. Use Bootstrap classes where appropriate-->
<style>
</style>
<body>
<h1>Twitter</h1>
<form>
<textarea>
Sample tweet text
</textarea>
<p>Characters used: 0/140</p>
<input type="submit">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment