Hello,
i have small problem with replacing croatian letters. I am using jQuery, and
am trying to replace croatian letters č,ć,š,đ,ž but dunno how to put this in regex.
For now i have regex for all chars:
$('#text').replace(/\b[a-z]/g, 'somechars' );
Unfortunately it wont reconize croatian special letters.
Thanks.
Regards