Really my total hairs gone for it problem.
$('ul#listticker').prepend($('<li><div class="user-box" id="user_box1">.......</div></li>').fadeIn(2000));
$("ul#listticker li:first").show("slide", { direction: "up" }, 1000);
It is perfectly working in IE but not working in firefox.
I found solution for it that is
my class user-box is
#fbook-iq .user-box {
width:280px;
height:41px;
float:left;
margin-bottom:1px;
padding:9px;
}
if i remove float:left line perfectly working
#fbook-iq .user-box {
width:280px;
height:41px;
margin-bottom:1px;
padding:9px;
}
Really i don't know what logical behind it.
please help me.