I have the following paragraph:
deemed to be safe and effective for fat reduction by about 20% at certain body sites. As a medical procedure, cryolipolysis is a nonsurgical alternative to liposuction.
How can I find all strings in a [ ]
and wrap them in a preferred class
?
JavaScript
x
3
1
.hidden{
2
display:none !important;
3
}
JavaScript
1
4
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
2
<p class="post-paragraph">The degree of exposure to cooling causes cell death of subcutaneous fat tissue, without apparent damage to the overlying skin.The method has a low rate of complications, and is deemed to be safe and effective for fat reduction by about 20% at certain body sites. As a medical procedure, cryolipolysis is a nonsurgical alternative to liposuction. </p>
3
4
<p class="post-paragraph">The degree of exposure to cooling causes cell death of subcutaneous fat tissue, without apparent damage to the overlying skin.The method has a low rate of complications, and is deemed to be safe and effective for fat reduction by about 20% at certain body sites. As a medical procedure, cryolipolysis is a nonsurgical alternative to liposuction. </p>
Advertisement
Answer
You can find text and wrap that contain with div class hidden
like below.
JavaScript
1
9
1
$('p').each(function(index, element) {
2
var str = $('.post-paragraph').text();
3
var start = str.indexOf('[');
4
var end = str.indexOf(']', start) + 1;
5
var text = str.substring(start, end)
6
$("p:contains(" + text + ")").html(function(_, html) {
7
return html.split(text).join("<div class='hidden'></div>");
8
});
9
});
JavaScript
1
3
1
.hidden {
2
display: none !important;
3
}
JavaScript
1
6
1
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
2
<p class="post-paragraph">The degree of exposure to cooling causes cell death of subcutaneous fat tissue, without apparent damage to the overlying skin.The method has a low rate of complications, and is deemed to be safe and effective for fat reduction by about 20% at certain
3
body sites. As a medical procedure, cryolipolysis is a nonsurgical alternative to liposuction. </p>
4
5
<p class="post-paragraph">The degree of exposure to cooling causes cell death of subcutaneous fat tissue, without apparent damage to the overlying skin.The method has a low rate of complications, and is deemed to be safe and effective for fat reduction by about 20% at certain
6
body sites. As a medical procedure, cryolipolysis is a nonsurgical alternative to liposuction. </p>