I have been working on getting Facing to validate. I have 24 issues remaining; all in the header file. I can't seem to locate the source to attempt fixes. Seems to be something related to a js file.All the errors reference thisCode:# # <script type='text/javascript' > # $(document).ready(function() { # var limit = 200; # $('textarea').each(function(intIndex) { # TextAreaCounter(intIndex,limit); # }); # }); # # function TextAreaCounter(t_no,limit) { # # var t_area = $('textarea')[t_no]; # $('</span></div><div style=\'margin-top:0px;padding-top:0px;\'><label> </label><span><input type=\'text\' id=\'counter'+t_no+'\' value=\''+limit+' Left\' style=\'width:60px;\' readonly></span></div>').insertAfter(t_area); # # $(t_area).bind('keyup',function () { # var count = $(t_area).val().length; # if(count >= limit) # { # $(t_area).val($(t_area).val().substr(0,limit)); # count = limit; # } # $('input#counter'+t_no+'').val(limit-count+' Left'); # }); # } # </script>Is there a simpler/cleaner one to build from? My goal is to build clean and simple, lightweight (minimal graphics) theme(s) to my tastes.Code:$('</span></div><div style=\'margin-top:0px;padding-top:0px;\'><label> </label><span><input type=\'text\' id=\'counter'+t_no+'\' value=\''+limit+' Left\' style=\'width:60px;\' readonly></span></div>').insertAfter(t_area);



