Hi All,

I have strange problem in this function I wrote:


1: function showFlash(text) {
2:    this.addFlash(text);
3:  
4:    $('#'+this.actualTab).height('265px');
5:  
6:    if (this.Flash != '') $('#comment-flash').animate(
7:        {opacity: 'show'},
8:        1500,
9:        function() {
10:            $('#'+this.actualTab).height('290px');
11:           $('#comment-flash').hide();
12:        }
13:    );
14:}

on line 4 the height has been given and can be shown, but on line 10 setting the height doesn't seemed to work. Is there anything I missed? I am newby to jQuery.

you can test it under following URL: http://mkmcom.hu/test2/index.html

Thx
Alex
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to