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
/****************************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