Toggle text of a button on click Jquery

326 Views Asked by At

I'm looking to toggle the text of a button on the click using jquery, But it is not working properly.

<asp:Button ID="btnedit" runat="server" Text="Edit" Visible="True"
                    CssClass="actButton" CausesValidation="False" OnClick="btnedit_Click" />

On client-side:

$("#<%= btnedit.ClientID %>").click(function (e) {    
    $(this).text(function (i, text) {
        return text === "Edit" ? "Cancel" : "Edit";
    });
});

Can someone please advise me how to solve this?

2

There are 2 best solutions below

0
On BEST ANSWER

I isolated your problem and you could try using this.

JSFiddle demo

Try using val() instead.

$("#btnedit").click(function (e) {    
    $(this).val("Edit" ? "Cancel" : "Edit");
});
0
On

Your selector looks incorrect to me

 $("#<%= btnedit.ClientID %>")

should be

 $("#btnedit")