I have the following html code , and I want to search the Welcome and make it bold .
<div class="welcome-msg">Welcome, First Name | </div>
the Output should be like this using DOM manipulation.
<div class="welcome-msg"><strong>Welcome</strong>, First Name | </div>
thanks ..