How do you change the text value of a button in JQuery? Currently my button has 'Add' as it's text value, and upon being clicked I want it to change to 'Save'. I have tried this method below, but so far without success :

$("#btnAddProfile").attr('value', 'Save');
link|improve this question

70% accept rate
3  
actually your example should work to change the value of the button. I tried it and it worked. Maybe the id of the button is different or a typo. – shifty Apr 7 '11 at 12:05
Still doesn't work...could JQuery UI styles be causing this? – user517406 Apr 7 '11 at 12:50
feedback

12 Answers

Depends on what type of button you are using

<input type='button' value='Add' id='btnAddProfile'>
$("#btnAddProfile").attr('value', 'Save'); //versions older than 1.6

<input type='button' value='Add' id='btnAddProfile'>
$("#btnAddProfile").prop('value', 'Save'); //versions newer than 1.6

<!-- Different button types-->

<button id='btnAddProfile' type='button'>Add</button>
$("#btnAddProfile").html('Save');

Your button could also be a link. You'll need to post some HTML for a more specific answer.

EDIT : These will work assuming you've wrapped it in a .click() call, of course

EDIT 2 : Newer jQuery versions (from > 1.6) use .prop rather than .attr

link|improve this answer
Got it working using .html('Save'), I didn't notice that I had set runat=server on my button, this is what was causing the issue. – user517406 Apr 7 '11 at 12:59
Any way I can get this to work and have it not shrinkwrap my jquery ui button? – Sevenearths Jun 15 '11 at 14:19
@Sevenearths what do you mean? – JohnP Jun 15 '11 at 15:06
don't worry about it. I changed from button to input and changed the icons round instead of messing with the text. (I suppose somethings weren't meant to be) – Sevenearths Jun 15 '11 at 15:49
I also enabled/disabled the button using this syntax: $("#btnAddProfile").prop('disabled', true); – Michael Broschat Jan 24 at 15:48
show 1 more comment
feedback

For buttons created with .Button() in jQuery........

Whilst the other answers will change the text they will mess up the styling of the button, it turns out that when a jQuery button is rendered the text of the button is nested within a span e.g.

<button id="thebutton">
  <span class="ui-button-text">My Text</span>
</button>

If you remove the span and replace it with text (as in the other examples) - you'll loose the span and associated formatting.

So you actually need to change the text within the SPAN tag and NOT the BUTTON!

$("#thebutton span").text("My NEW Text");

or (if like me it's being done on a click event)

$("span", this).text("My NEW Text");
link|improve this answer
feedback

Use .val()

Here's a link to JSfiddle

link|improve this answer
feedback

If you have button'ed your button this seems to work:

<button id="button">First caption</button>

$('#button').button();//make it nice
var text="new caption";
$('#button').children().first().html(text);
link|improve this answer
For jQueryUI buttons, this is it ... – dleiftah May 23 at 2:24
feedback

To change the text in of a button simply execute the following line of jQuery for

<input type='button' value='XYZ' id='btnAddProfile'>

use

$("#btnAddProfile").val('Save');

while for

<button id='btnAddProfile'>XYZ</button>

use this

$("#btnAddProfile").html('Save');

link|improve this answer
feedback
document.getElementById('btnAddProfile').value='Save';
link|improve this answer
feedback
$("#btnAddProfile").click(function(){
    $("#btnAddProfile").attr('value', 'Save');
 });
link|improve this answer
feedback

that's exactly correct, this works for me;

    $('#btnAddProfile').bind('click',function(){
    $(this).attr('value','save');
})

are you sure Jquery is available and that your code is in the correct place?

link|improve this answer
feedback

Have you gave your button a class instead of an id? try the following code

$(".btnSave").attr('value', 'Save');
link|improve this answer
feedback

You can use

$("#btnAddProfile").text('Save');

although

$("#btnAddProfile").html('Save');

would work as well, but it's misleading (it gives the impression you could write something like

$("#btnAddProfile").html('Save <b>now</b>');

but of course you can't

link|improve this answer
feedback

The correct way of changing the button text if it was "buttonized" using JQuery is to use .button() method:

$( ".selector" ).button( "option", "label", "new text" );
link|improve this answer
feedback
$("#btnviewdetails").click(function(){
    if($(this).val()!="hide details"){
        $("#detailedoutput").show();
        $(this).val('hide details');
    }else{
        $("#detailedoutput").hide();
        $(this).val('view more details');
    }

});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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