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.

How to Add/Append content(div/img tag etc) for a div using Jquery

i want it to insert in "#contentSlider"

$('#slider').after('<div id="nav" class="nav">').cycle({
        fx:     'turnUp',
        speed:  'fast',
        timeout: 0,
        pager:  '#nav'
    });

HTML

<div id="slider">
  <div id="banner1" class="slider"> 
    <div class="contentSlider">

    </div>
  </div>
</div>
share|improve this question
3  
what you want to insert? – Cris Jan 22 at 7:15
if you can see by default '$('#slider').after('<div id="nav"class="nav">')' the div#nav insert after #slider I want to change the location, i want it to insert that div after or inside '.contentSlider' – jhunlio Jan 22 at 7:21
You should be careful when using identical classes and ID's. It might be confusing after a while. You can change the ID to main-nav or secondary-nav for instance. Also, you might want to use the HTML5 <nav> element. – Bram Vanroy Jan 22 at 7:49

3 Answers

up vote 1 down vote accepted

try this

$('.contentSlider').append('<div id="nav" class="nav">...</div>');
share|improve this answer

If you want to insert an element than you can make use of Append method.

$('.inner').append('<p>Test</p>');

.inner is class selector .. you can replace it with the selector you want.

share|improve this answer
$('.contentSlider').html('<div id="nav" class="nav">')
share|improve this answer
this will delete all the existing content of .contentSlider,not recommended – Cris Jan 22 at 7:35

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.