JQuery を使用して、テキスト領域の貼り付けイベントを取得する必要があります。次のコードを試しましたが、うまくいきません...
$(document).ready(function()
{
$('#txtcomplaint').keyup(function()
{
TextCounter('txtcomplaint','counterComplaint', 1000 );
})
$('#txtcomplaint').onpaste(function()
{
alert()
//TextCounter('txtcomplaint','counterComplaint', 1000 );
})
});