[jQuery] Problem wih jQery Effect i FireFox

[jQuery] Problem wih jQery Effect i FireFox


Hi everyone ,
currently I am using jQUery in my Projectwhich is a CMS and some kind
of Portal ,
Recently I faced A little Problem with my jQuery at my FireFox
Browser
I check My codes with 2 browsers which are Standard and Suitable for
testing
1-IE7
2- Firefox 2
I used some jQUery Effects such as toggle ,slideDown, slideUp and etc…
There was no problem in my IE7 but in one situation there was a
problem in my firefox …
If we scroll the page down at thebottom of the page there is button
which is Clickable and it will do some toggle and slide effects , in
Firefox
We will face some Flashes in the page and some jumping in the paging
which only occurs in fireffox…
Who could help me on this you can try it , I’ve seen this problem in
everywhere and this is not user Friendly ….
What should we do …
For example in my project at the Bottom of the page I had some paging
for the content
And this is my code
int my Firefox Browser which is versian 2.1.14 the latest versian of
the 2 ...
if the content Scrolls down in the page to the Bottom of the page then
if we do some slideDown or slideUp Effect the page starts to Flash for
a second ... but I don't have this Problem IN the IE 7 ...
so what is the solution
this is my code ... I did some Paging stuff with jQuery
/****************************Down Paging starts
***************************/
$("table#downProPaging span a").click(function(){
var PagingData={
    start:$(this).parent().attr("id"),
    bId:$("#DownDataPostBid").val()
};
$.ajax({
url: 'pro/showpro/DownData.php',
type: 'POST',
data: PagingData,// id of the tree
dataType: 'html',
cache: false,
beforeSend: function() {
$("#showProDownMsg:visible").hide();
     $("#down_in_data_pro").slideUp(1000);
     $("#down_in_loading_pro").show(1000);
$("#down_in_loading_pro").html(inimg);
},
error: function(){ // if the data has not been send
     alert('xml error');
},
success: function (txt){
     $("#down_in_loading_pro").hide(1000);
     $("#down_in_data_pro").html(txt);
     $("#down_in_data_pro").slideDown(1000);
}
});
return false;
});
/****************************Down Paging Ends
***************************/
Regards Pedram