If you have any in a list item like 0123
then it will show abcd
. again if it 5462
then will show fegc
. my html code is below:
<div class="myList">
- 0123
- 5462
- 0542
</div>
Converted output will be
//////////
<div class="myList">
- abcd
- fegb
- afec
</div>
Is it possible to create using javascript?