[jQuery] Re: [TUTORIAL] Create a professional interface for your web applications using jQuery

2008-10-22 Thread Shawn
Not a bad tutorial. ! But... :) In your code you are doing things like # var windowHeight = document.documentElement.clientHeight; # var menuHeight = document.getElementById(menu).clientHeight; You can use jQuery here too: var windowHeight = $(window).height(); var menuHeight =

[jQuery] Re: [TUTORIAL] Create a professional interface for your web applications using jQuery

2008-10-22 Thread AdrianMG
Ey Shawn thanks for your feedback! I am not quiet sure now, but I think I have used # var windowHeight = document.documentElement.clientHeight; # var menuHeight = document.getElementById(menu).clientHeight; Because Internet Explorer give me some problems with the real width height available.