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 need to find all the p tags inside all the divs with a class of someClass and wrap them with another div. This is how the beginning mark up would look like :

<div class="someClass">
   // Lots of different tags generated by the site
   <p>Some text</p>
   <p>Some text</p>
   <p>Some text</p>
   <p>Some text</p>
</div>

<div class="someClass">
   // Lots of different tags generated by the site
   <p>Some text</p>
   <p>Some text</p>
</div>

Would turn into :

<div class="someClass">
   // Lots of different tags generated by the site
   <div class="bla">
   <p>Some text</p>
   <p>Some text</p>
   <p>Some text</p>
   <p>Some text</p>
   </div>
</div>

<div class="someClass">
   // Lots of different tags generated by the site
   <div class="bla">
   <p>Some text</p>
   <p>Some text</p>
   </div>
</div>

Any ideas? When I try using .each() : for each div with a class of someClass wrap all the p tags, but it just wraps them all together in the top div. I've tried many other things without success. thanks for having a look!

share|improve this question
Can you post your code? Your approach sounds right. – John Kugelman Oct 14 '09 at 15:39
I've posted an example here: pastebin.me/30acb260acc142dd0c9979aca9812390 – Turbodurso Oct 14 '09 at 16:50

1 Answer

Have you tried this?

$('div.someClass p').wrapAll(...);

Or this?

$('div.someClass').each(function() {
  $(this).find('p').wrapAll(...);
});

Edit

After looking at the code you posted, it appears to be a syntax issue. You need quotes in this line:

$(this).find('p').wrapAll(<div class='toggle'></div>);

It should be:

$(this).find('p').wrapAll("<div class='toggle'></div>");
share|improve this answer
I've tried that and similar things. It's really giving me a headache now!! I've posted an example of the problem on : pastebin.me/30acb260acc142dd0c9979aca9812390 – Turbodurso Oct 14 '09 at 16:49
1  
@John - your code almost works, just need to change the <div> class to someClass. Here's a Working Demo - jsbin.com/oxexe add /edit to the URL to see the code – Russ Cam Oct 14 '09 at 19:43
@Russ: I'm not sure what you mean. The edited section is a modification of a line within his code, where he is inserting the "toggle" div. It shouldn't be changed to "someclass". – John Fisher Oct 14 '09 at 19:54
@John - check out the case of the CSS class of the <div> in your selector compared to the CSS class of the <div> already in the HTML page in the question - you have someclass whereas the question has someClass. According to the HTML 4.01 spec, class and names are case-sensitive (although some browsers are not compliant with the spec) - devedge-temp.mozilla.org/viewsource/2001/css-class-id – Russ Cam Oct 14 '09 at 22:31
Ah. I hadn't tested it or intended it to be copy-paste worthy. Thanks for pointing that out, though. – John Fisher Oct 15 '09 at 1:45

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.