The following code is supposed to add some code inside each element .scrollable. Each element should have the first lines inside .scrollable before the already existing content and the second after the already existing content.

$('.scrollable').addClass('tny');
$('<div class="scrollbar"><div class="track"><div class="thumb"><div class="end"></div></div></div></div><div class="viewport"><div class="overview">').prependTo('.scrollable');
$('arse').appendTo('.scrollable');

Instead all the content is missing. What did I get wrong?

Sorry that was a test from earlier

$('.scrollable').addClass('tny');
                $('<div class="scrollbar"><div class="track"><div class="thumb"><div class="end"></div></div></div></div><div class="viewport"><div class="overview">').prependTo('.scrollable');
                $('</div></div>').appendTo('.scrollable');

That is how it currently looks

link|improve this question

57% accept rate
show your html code – Royi Namir Oct 14 '11 at 14:18
Please provide a fiddle if possible – Andre Oct 14 '11 at 14:19
Sorry should have looked like this. I was testing. – Robin Knight Oct 14 '11 at 14:25
@Michael try now – Robin Knight Oct 14 '11 at 14:26
feedback

2 Answers

up vote 0 down vote accepted

You cannot prepend() start tags and append() end tags. These methods only work with "complete" elements.

You should use wrapInner() instead:

$('.scrollable').addClass('tny')
                .wrapInner('<div class="viewport"><div class="overview"></div></div>')
                .prepend('<div class="scrollbar"><div class="track"><div class="thumb"><div class="end"></div></div></div></div>');
link|improve this answer
Lovely stuff... – Robin Knight Oct 14 '11 at 15:01
feedback

Because you have to replace 'arse' with <span>arse</span>.

update:

well, that's not correct:

$('</div></div>').appendTo('.scrollable');

you have to include those closing divs in the first prependto query, then if you want to include something in those newly created divs, just call them with jquery and insert the stuff you want inside them

link|improve this answer
Yo momma's so fat, her arse needs its own <span> tag. – Blazemonger Oct 14 '11 at 14:28
feedback

Your Answer

 
or
required, but never shown

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