// Character count
(function(JQ) {
wpWordCount = {
init : function() {
var t = this, last = 0, co = JQ('#content');
JQ('#wp-word-count').html( linkWordCountL10n.count.replace( /%d/, '0' ) );
t.block = 0;
t.wc(co.val());
co.keyup( function(e) {
if ( e.keyCode == last ) return true;
if ( 13 == e.keyCode || 8 == last || 46 == last ) t.wc(co.val());
last = e.keyCode;
return true;
});
},
wc : function(tx) {
var t = this, w = JQ('#wp-word-count'), tc = 0;
if ( t.block ) return;
t.block = 1;
setTimeout( function() {
if ( tx ) {
tc = tx.replace(/(<([^>]+)>)/ig,"").length;
//tx = tx.replace( /<.[^<>]*?>/g, ' ' ).replace( / /gi, ' ' );
//tx = tx.replace( /[0-9.(),;:!?%#$¿'"_+=\\/-]*/g, '' );
//tx.replace( /\S\s+/g, function(){tc++;} );
}
w.html('');
JQ('body#tinymce').css('border','');
var count_text = linkWordCountL10n.count.replace( /%d/, '' + tc + '' );
if(tc < linkWordCountL10n.min_length) {
count_text = count_text + ' ' + '' + linkWordCountL10n.need_more.replace( /%d/,linkWordCountL10n.min_length) + '';
JQ('body#tinymce').css('border','red 1px solid;');
}
else if(tc > linkWordCountL10n.max_length) {
count_text = count_text + ' ' + '' + linkWordCountL10n.need_less.replace( /%d/,linkWordCountL10n.max_length) + '';
JQ('body#tinymce').css('border','red 1px solid;');
}
else {
JQ('body#tinymce').css('border','green 1px solid;');
}
w.html(count_text);
//w.html(tc.toString());
setTimeout( function() { t.block = 0; }, 2000 );
}, 1 );
}
}
}(jQuery));
jQuery(document).ready( function(){ wpWordCount.init(); } );