[jQuery] HowTo Select first two characters of an li and hide them
This is My markup
<div class="multiple_options_caption"> Features</div>
<div class="multiple_options">
<ul><li class="features">11 Classic Design
</li>
<li class="features">14 Countryside View
</li>
<li class="features">17 Space for Swimming Pool
</li>
<li class="features">21 Garage
</li>
<li class="features">22 Spacious Garden
</li>
<li class="features">24 Landscaped Garden
</li>
<li class="features">27 BBQ
</li>
<li class="features">29 Guest parking </li>
</ul>
</div>
and i would like to hide/remove the first 2 numbers fom my li.features
How can this be achieved?
kind Regards
Rui