i want to change this html element.
<a class="btn small fileupload_cancel" title="cancel upload">cancel upload</a>
to
<a class="btn small fileupload_cancel" title="remove all">remove all</a>
what is the most feasible solution for this ?
thank you
This should help you:
$("a.btn.small.fileupload_cancel").attr("title", "remove all").html("remove all");
Let me know if you need anything else..
$('.fileupload_cancel').attr('title','remove all').text('remove all');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With