I have developed an application about product and their detials. In that application, at a page, it loads almost 10,000 product details on single page only.
I have attached a raw screenshot here :
http://img51.imageshack.us/img51/4430/uploadm.jpg
As the first step, the page loads an empty structure with no product detials in it.
Then using javascript BigPipe, it adds details of products in the structure.
The Product Detail Structure :
<div class="product_disp"
onclick="return clickEffect(this,event);"
onmousemove="return show_img_trail('product_details');"
onmouseout="return hide_img_trail(this);" align="left" >
<img src="pic.jpg" class="prodcuts_img"/>
<span style="overflow:hidden;" align="left"> <b> Product_3 </b> <br/>
id : 8146 <br /></span>
<span style="padding:0px;width: 100%;" align="right">Available </span>
</div>
But when i try to scroll down the scroller for product_details <div> , it scrolls slowly.
what can i do to make scroll like normal?
i dont know what exactly making it slower.
There are a lot of options, and they might not all be applicable, but here are some:
jQuery.live('event', function(){ ... });.Without seeing what you’re doing in your JavaScript and what your CSS looks like, it’s hard to give you more specific details about your situation, though.