плагин счетчика символов jquery не работает - PullRequest
0 голосов
/ 13 ноября 2010

Вот HTML и внутренний JavaScript

<script type="text/javascript" src="JS/jquery-1.3.2.min.js"></script>
<script src="JS/jquery.jqEasyCharCounter.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {

 $("textarea").click(function () {
   var code = $("textarea#statuspost").val();

if(code == "Fight for what's right with up to 210 bytes...")
{
     $("textarea").html("");
}

});

$('#statuspost').jqEasyCounter({
'maxChars': 210,
'maxCharsWarning': 200,
'msgFontSize': '16px',
'msgFontColor': '#d4d4d4',
'msgFontFamily': 'Verdana',
'msgTextAlign': 'left',
'msgWarningColor': 'red',
'msgAppendMethod': 'insertBefore'    
});

});
</script>


<div id="loop">
<form method="post" action="discussion-proof.php" name="myform">
 <textarea id="statuspost" name="status" cols="31" rows="6"/>
 Fight for what's right with up to 210 bytes...</textarea>

 <input type="text" id="tag" name="tag" onclick="clear_box()" value="Tag your post!" />
 <input type="submit" class="button" value="Post"/>
</form>

1 Ответ

0 голосов
/ 13 ноября 2010

Чтобы очистить все текстовые поля, используйте $('textarea').val(''); вместо $("textarea").html(""); Если вы не хотите очищать ВСЕ текстовые поля, используйте ваш селектор, например, $('#statuspost').val('');

...