Hello I'm presently creating a wordpress admin theme, I have to use jquery to create a DIV's height 100% on document load.
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#wpbody").height(jQuery(document).height());
});
</script>
Regrettably it is not working, I believe its damaged since there already is available a "document ready" function... somewhere within the wordpress admin mind...
Any help could be appreciated.