Aaron
New Member
Posts: 146
inherit
190454
0
Jul 18, 2024 15:15:21 GMT -8
Aaron
146
February 2013
aarongoff
|
Post by Aaron on Mar 27, 2013 13:54:00 GMT -8
Add this to the bottom of the Edit User Profile template file: <script type="text/javascript"> $(document).ready(function() { var max = $('textarea[name="signature"]').attr('maxlength'), count = max - $('textarea[name="signature"]').val().length; $('a#signature_preview').after(' - Characters remaining: <span id="counter">' + count + '</span>'); $('textarea[name="signature"]').bind('keyup', function() { count = $(this).val().length; var remaining = max - count; $('span#counter').html(remaining); }); }); </script>
This is a built in feature in my Signature Manager plugin, so be sure to check that out if you want more control over your forum signatures.
|
|
inherit
Jack of All Trades, Master of None
27090
0
May 30, 2013 20:36:34 GMT -8
Stinky666
8,818
July 2004
stinky666
|
Post by Stinky666 on Mar 27, 2013 14:07:29 GMT -8
Aaron, you are absolutely awesome man. Thanks a million
|
|