Skip to content
Advertisement

Change diacritics color with javascript in html/PHP

I am using the following script to remove the diacritics from text, and I was wondering if there is a way to color the diacritics in html or PHP instead of removing them (the example is in Arabic, but the same applies to Hebrew, French, even English.. etc.).

Javascript code:

JavaScript

Running demo: http://jsfiddle.net/8jAL8/29/

Input: لاَ تَتَعَجَّبُواٌ مِنْ هذَا:

enter image description here

Example of the needed output:

Example of the needed output:

There is an option to do that in Microsoft Word, or LibreOffice, and also I found something here but the first answer needs a fixed text to work, and the second answer just colorizes the whole upper part of the text.

Advertisement

Answer

First, to remove the 8 Arabic tashkeel from an Arabic text, you can do that with the following short line:

JavaScript

you can then use the function like this:

JavaScript

For the 2nd part of your questions, here is a short function to colourize the Arabic diacritics (tashkeel symbols “harakat”).

There are eight (8) basic Arabic tashkeel symbols, namely:

JavaScript

enter image description here

To have each tashkeel symbol (diacritic) has its own colour, call the function with your Arabic text as follows:

JavaScript

If you want all tashkeel symbols (diacritics) to have the same colour, then pass the html colour name as the second parameter to the function as follows:

JavaScript

Here is the function with working examples.

You can change the eight (8) colour names used for the 8 diacritics symbols on the 2nd line of the function.

In the three (3) examples below; the first one is with different colours, the 2nd is with blue colour, and the 3rd with red colour.

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement