Quick question I could not find anywhere ..
How do I change the text of a small?
I'm trying with the same code I used to change a text once, I think the problem is in the selectors, but I already tested with all of them and did not roll. I do not have access to HTML and the Jq version is 1.12.4 JQ:
$(window).on('load', function(){
$('td[name=Boleto]')
.find('small')
.text('Transferência');
});
html:
<label class="card Billet">
<input type="radio" value="Billet" class="rdoCreditCards" name="CreditCardProvider" id="CreditCardProvider" displayname="Boleto">
<span>
<small>Boleto</small>
</span>
</label>