javascript - Detect #tags from html element and decorate it with color -
i want replace #tag html elements decorated color or surrounded tags can decorate it.
<html> <head></head> <body> <div id="one">hello #there, how #are you?</div> <div id="two">i learning #javascript , #jquery client side technologies </div> </body> </html>
if want decorate #there, #are, #javascript , #jquery changing colors, fonts or can use <span>there</span>
. can give different styles text. <span style="color:blue">there</span>
.
Comments
Post a Comment