Trying to replace some text wrapped in a button tag, but this jquery doesn't seem to work for me. Any suggestions?
<div id="memorabilia">
<button class="btn btn-primary" id="load">More Memorabilia</button>
</div>
$('#load').text(function() {
$(this).text('MÉG TÖBB MEMORABILIA');
})