vote up 2 vote down star

Hello,

I have an image

<div class='container'>
    <img src='../images.jpg' alt='images' />
</div>

I want to put this image in div with jquery

<div class='container'>
   <div class='some_class'><img src='../images.jpg' alt='images' /></div>
</div>

Tnaks!

sorry, I'd like tu put in this div not onli this images but element also ???

ex:

<div class='container'>
   <div class='some_class'>
       <img src='../images.jpg' alt='images' />
        <strong>text</strong>
   </div>       
</div>
flag

71% accept rate

5 Answers

vote up 5 vote down check

$(".container img").wrap("<div class=\"some_class\"></div>");

Check out the Wrap documentation

link|flag
sorry, but I can put in this div not onli image but <strong> element also ??? <div class='container'> <div class='some_class'><img src='../images.jpg' alt='images' /> <strong>text</strong> </div> </div> – Alexander Corotchi Jul 7 at 13:20
In that case, I'd use something like: $(".some_class").append("<strong>text</strong>"); right after you executed the the Wrap. – mgroves Jul 7 at 13:35
vote up 1 vote down

If you have an id for the image, you can use wrap:

$("#myimg").wrap("<div class='some_class'></div>");
link|flag
vote up 0 vote down

u can use wrap inner plug in

<script>
$('.myimage').wrapInner('<div><\/div>');
</script>

http://motherrussia.polyester.se/jquery/wrapinner/

link|flag
vote up 0 vote down

You could do this, easy and quick:

$(".container img").wrap("<div class='some_class'></div>");

You can also build the nodes yourself, but with jquery this is a fine answer.

link|flag
vote up 0 vote down
$(".container img").wrap('<div class="some_class"></div>')

There are some great documentation at http://docs.jquery.com/Main_Page

link|flag

Your Answer

Get an OpenID
or

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