What else i can use instead of class for Jquery selector? -
for buttons using class assigning css classes. have define selector those. know can use class jquery selector else can use , how ?
they rendered input not buttons.
<asp:button id="imgbtnturkish" onmouseover="this.style.cursor='pointer';" class="defaulttitle" title="turkish spoken chat section" runat="server" onclick="btnturkishchat_click" causesvalidation="false" />
there many jquery selectors choose from. 1 possibility select button wrap in div element given class:
<div class="defaulttitle"> <asp:button id="imgbtnturkish" onmouseover="this.style.cursor='pointer';" title="turkish spoken chat section" runat="server" onclick="btnturkishchat_click" causesvalidation="false" /> </div>
and use following selector: $('.defaulttitle input')
.
Comments
Post a Comment