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

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

android - layout with fragment and framelayout replaced by another fragment and framelayout -