I'm using the new jquery mobile 1.0 alpha 1 release to build a mobile app and I need to be able to toggle the text of a button. Toggling the text works fine, but as soon as you perform the text replacement the css formatting gets broken.

Screenshot of the messed up formatting: http://awesomescreenshot.com/03e2r50d2

    <div class="ui-bar">
        <a data-role="button" href="#" onclick="Podcast.play(); return false" id="play">Play</a>
        <a data-role="button" href="#" onclick="Podcast.download(); return false" id="download">Download</a>
        <a data-role="button" href="#" onclick="Podcast.consumed(); return false" id="consumed">Mark Old</a>
    </div>

$("#consumed").text("Mark New");
link|improve this question

77% accept rate
why do you use onclick in HTML with jQuery in place??? – naugtur May 30 '11 at 10:44
feedback

5 Answers

up vote 29 down vote accepted

When you create the button it adds some additional elements, some inner <span> elements that look like this:

<a data-role="button" href="#" onclick="Podcast.consumed(); return false" id="consumed">
  <span class="ui-btn-inner ui-btn-corner-all">
    <span class="ui-btn-text">Mark Old</span>
  </span>
</a>

To change the text, you'll want this selector:

$("#consumed .ui-btn-text").text("Mark New");
link|improve this answer
works like a champ, thanks! – Josh Rickard Oct 24 '10 at 18:01
@CaffeineFueled - welcome :) – Nick Craver Oct 24 '10 at 18:02
11  
There should be a better way to achieve this, like with the $('ul').listview('refresh'); call to update a list. Although the way described works, it takes into account internal knowledge of how the final layout of the elements looks like. This implementation detail might change in the future. But since jquery mobile is still in alpha stage, +1 for the pragmatic solution. – Jordão Jan 24 '11 at 19:34
I came across this question cause the initial question was a bit misleading (Nick's answer is correct though). But I just want to add, for others looking into the same problem with an actual <button>, that the approach doesn't work for a <button> element, only for <a> with data-role="button", also see github.com/jquery/jquery-mobile/issues/2544 – Mathias Lin Nov 8 '11 at 6:16
-1 > The correct approach here is to run $('#myButton').button('refresh') after a DOM update. – Steven de Salas Apr 20 at 15:33
show 2 more comments
feedback

I wrote a simple plugin to do this for either a link based button, or an <input type="button"> button. So if you have

<input type="button" id="start-button" val="Start"/>

or

<a href="#" data-role="button" id="start-button">Start</a>

Either way, you can change the displayed text with

$("#start-button").changeButtonText("Stop");

Here's the plugin:

(function($) {
    /*
     * Changes the displayed text for a jquery mobile button.
     * Encapsulates the idiosyncracies of how jquery re-arranges the DOM
     * to display a button for either an <a> link or <input type="button">
     */
    $.fn.changeButtonText = function(newText) {
        return this.each(function() {
            $this = $(this);
            if( $this.is('a') ) {
                $('span.ui-btn-text',$this).text(newText);
                return;
            }
            if( $this.is('input') ) {
                $this.val(newText);
                // go up the tree
                var ctx = $this.closest('.ui-btn');
                $('span.ui-btn-text',ctx).text(newText);
                return;
            }
        });
    };
})(jQuery);

... because sprinkling your code with dependencies on exactly how jQuery Mobile renders these buttons is not a good idea. Programming rule: if you gotta use a hack, isolate it to a well-documented, re-usable chunk of code.

link|improve this answer
I like this solution because if the class .ui-btn-text is changed some day in jQuery Mobile there will be only a few lines of code to change instead of a bunchload of html and javascript. – Libby Apr 30 at 18:49
feedback

This works for me:

$('#idOfOriginalButton').prev('.ui-btn-inner').children('.ui-btn-text').html('new text');

solution from: http://forum.jquery.com/topic/changing-text-works-except-for-buttons

link|improve this answer
1  
+1 because this allows you to change the text when a button is clicked. $("button").bind("click", function(event, ui) { $(this).prev('.ui-btn-inner').children('.ui-btn-text').html('new text'); return false; }); – styfle Dec 21 '11 at 19:02
feedback

For markup like

<button id="consumed">Mark Old</button>

$("#consumed").html("Mark New");
$("span > span", $("#consumed").parent()).html("Mark New");
link|improve this answer
feedback
<a data-role="button" href="#" id="consumed">Mark Old</a>

You want to:

$('#consumed').text('Mark New');
$('#consumed').button('refresh');

The reason is to enable your changes to be backwards-compatible with future versions of jQuery mobile.

link|improve this answer
This method fails with"uncaught exception: cannot call methods on button prior to initialization; attempted to call method 'refresh'" when I try this (Firefox 12.0). Accepted answer worked for me. Using jQM 1.1.0 and jQ 1.7.1. – PahJoker May 13 at 1:01
Accepted answer is a bit of botch even though it works, you want to use the jQuery API as much as possible to ensure future compatibility. This answer will work fine after the button has been initialized, make sure you wrap the code in $(document).ready(function() { ... }); – Steven de Salas May 13 at 9:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.