Wondering if you can help me out. I seem to have a problem changing the text of my jQuery Mobile buttons with jQuery.
$(\"#myButton .ui-btn-text\").text(\"New te
Updated the following works for me (similar to the answer from kovač):
$('#MyButton').html('changed value').button('refresh');
or
$("#MyButton").val("changed value").button("refresh");