Hey guys,
So what I want is to have some tables like this
<ul>
<li>Some Text, Links whatever</li>
</ul>
ordered by the page view. So if the page ends (on the bottom) in the view I wanna have a new table on the right of the first like this:
<div class="left_1 table">
<ul>
<li>First Some Text, Links whatever</li>
</ul>
</div>
<div class="left_2 table">
<ul>
<li>Second Some Text, Links whatever</li>
</ul>
</div>
The CSS I think will be like this:
.table {
float:left;
}
and so on. The full process I wanna realise with Jquery. I try it so say it in my syntax:
$('li').each(function () {
if($this.isOutofBottomView) {
$this.putIn.next('li');
} else {
// do nothing
}
});
Thanks, I hope you know what I'm asking for :)