I have this DOM tree:
<li>
data ....
<br>
data ...
<img ... />
<br>
<script> ... </script>
<span> data ... </span>
</li>
how can I scroll the children of this li element that fall between the sheet itself and the script element, i.e. script, and span elements are out of loop ... thanks in advace !!
note: I do not want to use jQuery because my application uses Protoype and it will conflict with jQuery, if I use both of them together, I would appreciate a quick solution using Prototype.
source
share