Skip to main content

How to put counter of remaining charector of text in textbox

How to put counter for char remaining in textbox

Html

<asp:TextBox runat="server" ID="TxtBody" CssClass="form-control" TextMode="MultiLine" Rows="5" placeholder="Body" MaxLength="159" ></asp:TextBox>
<div id="Textremaining"></div>

Javascript

$(document).ready(function() {
    var maxChar = 159;
    $('#Textremaining').html(maxChar + ' remaining');

    $('#<%=TxtBody.ClientID%>').keyup(function() {
        var length = $('#<%=TxtBody.ClientID%>').val().length;
        var remaining = maxChar - length;

        $('#Textremaining').html(remaining  + ' characters remaining');
    });
});

Comments

Post a Comment

Popular posts from this blog

MIME Types list

Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of email to support: Text in character sets other than ASCII Non-text attachments: audio, video, images, application programs etc. Message bodies with multiple parts Header information in non-ASCII character sets    MIME Types list   Suffixes Mime .3dm x-world/x-3dmf .3dmf x-world/x-3dmf .a application/octet-stream .aab application/x-authorware-bin .aam application/x-authorware-map .aas application/x-authorware-seg .abc text/vnd.abc .acgi text/html .afl video/animaflex .ai application/postscript .aif audio/aiff .aif audio/x-aiff .aifc audio/aiff .aifc audio/x-aiff .aiff audio/aiff .aiff audio/x-aiff .aim application/x-aim .aip text/x-audiosoft-intra .ani application/x-navi-animation .aos application/x-nokia-9000-communicator-add-on-software .aps application/mime .arc ap...

Check your content

http://www.copyscape.com want to check your content is posted in other site or in blog. check in from this site. this site list out the content is posted which places. very useful for bloggers.