Hello Helpers !
I have a html part to select by JQuery :
I am using JQuery , and my aim is to change all texts after the div main-title, for now , I can't manage to do it,
trying many 'selectors' solution.
Do you have any good ways to achieve ?
Jquery selectors are :
I have a html part to select by JQuery :
HTML:
<section id="home">
<div class="main-title"> home </div>
<br> text ... text ... text <br><br>
</section>
<section id="account">
<div class="main-title"> Account </div>
<br> text ... text ... text <br><br>
</section>
I am using JQuery , and my aim is to change all texts after the div main-title, for now , I can't manage to do it,
trying many 'selectors' solution.
Do you have any good ways to achieve ?
Jquery selectors are :
JavaScript:
$('tag .class #id').function...