Ich möchte das nächste Element eines ausgewählten Elements entfernen. Hier möchte ich "div" mit der css-Klasse "xqh_Mandatory_icon" entfernen.
<div class="xqh_Field">
<nobr>
<input name=
"ctl00$objContentPageTag$spzContactInformation$txt_sContactFirstName$txt" type="text"
size="25" id=
"ctl00_objContentPageTag_spzContactInformation_txt_sContactFirstName_txt" class=
"xqh_TextBox_Edit validate_txt_sContactFirstName" style=
"width:150px;margin-right:0px;" />
</nobr>
<div class="xqh_Mandatory_icon"></div>
</div>
Ich habe es mit diesem Code versucht
$('.xqh_TextBox_Edit.validate_txt_sContactFirstName').next().remove('xqh_Mandatory_icon');
aber es hat nicht funktioniert.