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 to build some html and the final code should look like this:

<div id="uploaded">
  <div class="thumbs">
    <img src="http://www.example.com/image.jpg" />
    <div class="delete-pic">delete</div>
  </div>
</div>

so div id "uploaded" is hard coded in the source, the rest(.thumbs, img, .delete-pic) will be inserted using jquery

so i use the following jquery code to do the job:

$('<div class="thumbs"></div>').appendTo('#uploaded');
$('<img />').attr("src", thumb_url).appendTo('.thumbs');
$('<div></div>').attr("class", "delete-pic").appendTo('.thumbs').text("delete");

this works fine, except that there could be an unknown number of div.thumbs as children of div#uploaded. so the above jquery will appendto the same block of tags into all div.thumbs that are currently on screen.

I was thinking if generating a random id for each div.thumbs and then using that id to appendto the images and div.delete-pic

but maybe there is some easier solution?

share|improve this question
Please post your actual code. .thumbs is an syntax error. – alex Dec 29 '11 at 1:15
@alex sorry forgot to enclose the class names in quotes.. edited now – Thomaz Ebihara Dec 29 '11 at 2:44

1 Answer

up vote 1 down vote accepted

Why not create the "thumbs" in memory, then add what you need, then append. like so:

var tempthumb = $('<div class="thumbs"></div>');
$('<img />').attr("src", thumb_url).appendTo(tempthumb);
$('<div></div>').attr("class", "delete-pic").appendTo(tempthumb).text("delete");
$('#uploaded').append(tempthumb);
share|improve this answer
nice worked perfectly thanks! – Thomaz Ebihara Dec 29 '11 at 2: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.