Created
December 6, 2015 05:15
-
-
Save DavidGoussev/f507cf302a0e0599c3d2 to your computer and use it in GitHub Desktop.
status_update jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var main = function() { | |
| $('.btn').click(function() { | |
| var post = $('.status-box').val(); | |
| $('<li>').text(post).prependTo('.posts'); | |
| $('.status-box').val(''); | |
| $('.counter').text('140'); | |
| $('.btn').addClass('disabled'); | |
| }); | |
| $('.status-box').keyup(function() { | |
| var postLength = $(this).val().length; | |
| var charactersLeft = 140 - postLength; | |
| $('.counter').text(charactersLeft); | |
| if(charactersLeft < 0) { | |
| $('.btn').addClass('disabled'); | |
| } | |
| else if(charactersLeft == 140) { | |
| $('.btn').addClass('disabled'); | |
| } | |
| else { | |
| $('.btn').removeClass('disabled'); | |
| } | |
| }); | |
| $('.btn').addClass('disabled'); | |
| } | |
| $(document).ready(main); |
Author
Author
style.css
html,
body {
font-family: 'Roboto', sans-serif;
color: #404040;
background-color: #eee;
}
.container {
width: 520px;
margin-top: 20px;
}
.button-group {
margin-bottom: 20px;
}
.counter {
display: inline;
margin-top: 0;
margin-bottom: 0;
margin-right: 10px;
}
.posts {
clear: both;
list-style: none;
padding-left: 0;
width: 100%;
}
.posts li {
background-color: #fff;
border: 1px solid #d8d8d8;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
margin-bottom: 10px;
word-wrap: break-word;
min-height: 42px;
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
index.html