ラベル要素があります:
<form id="new_user">
<div id="first-name">
<label for="user_profile_attributes_first_name"><abbr title="required">*</abbr> First name</label>
</div>
</form>
#new_userに.team-registrationがある場合、テキストの名をチーム名に置き換えたい。どのようにそれをするのが良いですか?
if $('#new_user').hasClass('team-registration') {
....
}
ありがとう!