I have a fairly complicated problem.
The usual markup (no problems here):
<div class="wrapper">
<div class="title"> bla bla... </div>
<div class="content"> ...content... </div>
</div>
The "twisted" markup:
<div class="wrapper">
...content... </div>
</div>
As you can see the opening tag for div.content is missing. Unfortunately I have no control over the output within .wrapper :(
So, my question is: how can I detect if div.title is present, and if not - insert <div class="content"> (not the .title) after div.wrapper ?
I'm aware how to do this with jQuery, but I need a pure javascript solution because with jQuery you get a small "delay" before the layout gets fixed. Any ideas?
<script> ... </script>just after thediv– Alex Nov 18 '10 at 3:44