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
this is very easy, there is a method for this, button('refresh')
$('#mybutton').val('new Value').button('refresh');
good luck!