hot to remove a dd-element if the dt-element in a definition list has a specific css-property?
i have got about 50 definition lists on one html-page witch all look linke this:
- <dl>
- <dt class="title">aaa</dt>
- <dd class="subtitle">bbb</dd>
- <dd class="city">ccc</dd>
- <dd class="email">ddd</dd>
- <dd class="website">eee</dd>
- <dd class="description">fff</dd>
- </dl>
if the dt-element in one of the definition lists has a specific css-property (e.g. length > 100px) then the dd-element with the css-class "subtitle" in the same definition list should be removed.
how can i do this with jquery?