Can I addClass to a Button in OnClientClick event in Javascript?
How can I addClass this Button in OnClientClick event. I have a list of 2 buttons: <asp:Repeater ID="rpt_one" runat="server" ClientIDMode="Static"> <ItemTemplate> <asp:Button ID="bt_falist" ClientIDMode="Static" OnClientClick='<%# "handleLikeClick("11", "22"); return false;" %>' Text="" /> <label id="countlike"><%# Eval("CountF") %></label> </ItemTemplate> </asp:Repeater> I try…