jQueryを使用した単語数に問題があります。スペースをクリックするとすぐにメソッドが機能し、停止します。
HTML:
<textarea id="essay_content_area" name="essay_content" onkeydown="words();"></textarea>
<td>Number of words: <div id="othman"></div></td>
jQuery:
function words(content)
{
var f = $("#essay_content_area").val()
$('#othman').load('wordcount.php?content='+f);
}
PHPファイル:
if(isset($_GET['content']))
{
echo $_GET['content']; // if it works I will send this variable to a function to calculate the words
}
スペースをクリックするまで、スクリプトはコンテンツを表示します。助言がありますか ?