I designed this site for my friend: http://noorjamali.info/
I have one problems with this site - why do these lines not work in IE 8?
$j('#lveis-wrapper_3').animate({
opacity: 0.0,
height : 740
}, 1200, function () {
// Animation complete.
)};
This is jQuery - so why does not work in IE 8?
What is the replacement?
Thanks in advance
why cant you try http://jsfiddle.net/9FBrx/
$('#lveis-wrapper_3').animate({
height : '300px',
opacity:'0'
}, 1200, function () {
// Animation complete.
})