Hello I am using a slider that generates a button and gives it some text. I am wondering if there is some way to remove this text using jQuery. I am not able to edit the html because it is being generated by the slider.
Here is my HTML:
<button type="button" class="slick-next">Next</button>
As you can see it is giving the button a text of "Next" I would like to completely remove it so it looks like:
<button type="button" class="slick-next"></button>
Is this possible?
Thanks
$(".slick-next").text("");