Using $(document).ready(...) will apply whatever you want after the
html is downloaded ( that doesn't include images ect...) If you want
it any earlier then this is pretty much your only option:

<div id="moveme"></div>
<script>$("#moveme").css("position-left","-30px");</script>

The only other way is to... use css.

~Sean

Reply via email to