. :
. , , , , . buttonMarkup , (, , ) . ( ), ui-disabled JavaScript .
( ) - , , "refresh" .
Edit:
, ; :
, , .ui-btn-text span, ; , jquery Mobile.
, - "refresh" . , ( ), , "refresh" .
; , DOM (.. jQM API), - , , API. DOM .
, @Phil Pafford ($(this).find('span span')) @OmarNew2PHP ($button.children().children()), ( ) . , , , :
<a id="myCrapButton" href="#" data-icon="delete">Click me!</a>
jQM span, ( ):
<a href="#">
<span class="ui-btn-inner">
<span class="ui-btn-text">Delete</span>
<span class="ui-icon ui-icon-delete ui-icon-shadow"> </span>
</span>
</a>
span. , DOM - ( ) , jQM.
, , - , :
$button.click(function() {
$(".ui-btn-text", this).text("Awesome Button");
});
.