In my custom style sheet coustume-webkit.css, I have the following code snippet:
.tabella .pagination > li:last-child > a:before, .tabella .pagination > li:last-child > span:before {
padding-right: 5px;
content: "avanti";
width: 60px;
}
Within my HTML markup, I am using the pagination
class in this manner:
<ul class="pagination">
<li class="paginate_button previous" [ngClass]="{'disabled': pageActive === 1}"
</li>
<li class="paginate_button" [ngClass]="{'active': page===pageActive}"
*ngFor="let page of _totalPageSlice">
</li>
<li class="paginate_button next" id="{{id}}_{{id}}_next"
[ngClass]="{'disabled': pageActive === _totalPage}" label="_next">
</li>
</ul>
I am interested in dynamically managing the text content: "avanti";
within this class from TypeScript. Can you provide me with suggestions on how to access and manipulate the content: "avanti";
property from TypeScript code?