I want to prepend using another existing elements class in the elements that will be prepended. For the sake of avoiding confusion lets say that i only know that the parent elements class has word "box" in the beginning and lets say rest of the class is randomly generated.
Therefore i obviously cant write for example:
.prepend('<div class="box-something_more"></div>');
Because for all i know, the parent elements class might be "box-nothing" or "box-something-else" or millions of other things.
html structure:
<div class="box-something"> <!-- source of the box- class -->
<div class="box-something_more"></div> <!-- prepended element -->
<div class="box-something_evenmore"></div> <!-- prepended element -->
</div>
<div class="box-two"> <!-- source of the box- class -->
<div class="box-two_more"></div> <!-- prepended element -->
<div class="box-two_evenmore"></div> <!-- prepended element -->
</div>
So what needs to happen is that the elements that will be prepended get the beginning of their class from the parent element.
Edit: this seems to do the trick. http://jsfiddle.net/tDUpD/3/
prepend(), orprependTo()? – David Thomas May 29 '11 at 17:23classof 'box'? You want to create multipledivelements? – David Thomas May 29 '11 at 17:31divwith a class beginning withbox? Even after you've added furtherdivs? – David Thomas May 29 '11 at 17:41