Am trying to change text of an asp:Button using jQuery Like this

  $("#<%=delButton.ClientID%>").attr('text', 'InActivate');
  .....
  <asp:Button ID="delButton" runat="server" UseSubmitBehavior="false" Text="Activate "    
   CssClass="button"   ToolTip="" OnClientClick="ondel();return false;"/>

I can see the text changing, Is the proper way to do?

Thanks

link|improve this question

71% accept rate
feedback

2 Answers

up vote 2 down vote accepted

This is shorter ;)

$("#<%=delButton.ClientID%>").val('InActivate');
link|improve this answer
Very Shorter :) :) Thanks – Dark Rider Jan 17 at 7:33
The only note I would make to this is that if the object created is <button> and not <input type="button"> than this doesn't work. You could then use $("#<%=delButton.ClientID%>").text('InActivate'); – spinon Jan 17 at 7:34
feedback

Yes, that's the best way I know of. This will get you the right client id regardless of clientIDMode:

<%= delButton.ClientID %>
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.