Naming Conventions for using jQuery class selectors (Is there a convention)

Naming Conventions for using jQuery class selectors (Is there a convention)

I'm a .Net programmer and am starting to use jQuery more and more. I'm wondering how I should approach naming jQuery classes that are mixed in with CSS classes.

For instance, let's say I have the following textbox.

  1. <asp:TextBox ID="txtSubject" CssClass="textField officeName" MaxLength="150" runat="server" />
In this case, textField is a CSS class that is formatting the textbox and officeName is a jQuery class that I am using to populate the field after some jQuery is run. 

Should I name my jQuery classes different? I was thinking of prefixing them with jqc (so it would be jqcOfficeName). Then I would always know which is CSS and which is jQuery. 

I know if I am consistent and this works for me, it is ok, but Is there a standard for naming jQuery classes vice CSS classes so you can easily remember which is which?