Noticed that whn i do rhis synchronized it works? But that locks up
the browser while the request is sent. Maybe that helps to solve the
problem? I don´t understand why when i use asynchronized request, the
first time the variable is undefined and then when i type for instance
"Joe" i get back "Jo"
Thanks did that and seems to be fine many thanks
Si
On Jun 26, 2:38 pm, simon wrote:
> thanks for tthe reply for got to say, before this I was finding the
> height out of my UL by going through all th eli heights then adding it
> to the ul
>
> // find the height of each li and add it to the tot
thanks for tthe reply for got to say, before this I was finding the
height out of my UL by going through all th eli heights then adding it
to the ul
// find the height of each li and add it to the total
$listItems.each(function (i){ ulHeight += parseInt($(this).css
('height'));});
// once total
You're checking the css attribute : height
$container.find('div.listContainer ul').css('height');
If that's set to "auto", then that's what will be returned.
What you want is the ACTUAL height.
$container.find('div.listContainer ul').height();
L
simon wrote:
I have this hover function an
4 matches
Mail list logo