Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using jQuery Mobile which creates a lot of the DOM for you. I need to remove() radio buttons, but based on how the HTML is constructed in jQuery Mobile, I do not have an id for the parent div. I can easily grab both the input and labels, but need to also get rid of the our div to completely removed the entry styling from the list of radio buttons.

<div class="ui-radio">
  <input type="radio" value="ahBkMj" id="ahBkMj" name="spam" data-theme="c">
  <label for="ahBkMj" class="ui-btn ui-btn-icon-left ui-btn-up-c">
    <span class="ui-btn-inner">
      <span class="ui-btn-text">Foo</span>
      <span class="ui-icon ui-icon-ui-icon-radio-off ui-icon-radio-off"></span>
    </span>
  </label>
</div>
share|improve this question
why not toggle them? show/hide? – Phill Pafford Jun 1 '11 at 18:42

2 Answers

up vote 7 down vote accepted

Will jQuery's .parent() do ?

share|improve this answer
2  
also of interest may be ".closest()" – Pointy Jun 1 '11 at 18:27
@Pointy, as you said last time, "great minds" :) – Frédéric Hamidi Jun 1 '11 at 18:29
Thanks, didn't know about parent. – Will Merydith Jun 1 '11 at 18:42
.parent() was there before jquery. It is a method of DOMelement object in JavaScript. – naugtur Jun 2 '11 at 7:30

Since the <div> element is the immediate parent of your <input> element, you can use the aptly-named parent() method:

$("#ahBkMj").parent().remove();

In the general case, if you want the first ancestor matching a selector, you can use closest():

$("#ahBkMj").closest("div").remove();

Note, however, that closest() includes the element itself in its search.

share|improve this answer
+1 for the example. – Will Merydith Jun 1 '11 at 18:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.