Quote:
Originally Posted by abduraooft
Is there a way to have a demo/some code ?
|
Code:
<div id="next_prev_btn">
<div id="prev_btn"><a class="prev_btn" href="javascript:goToPrev();"></a></div>
<div id="next_btn"><a class="next_btn" href="javascript:goToNext();"></a></div>
</div>
Code:
function goToNext()
{
var next_ind = current_pg_ind + 1;
if (next_ind <= pages_arr.length - 1)
{
current_pg_ind = next_ind;
requestPage(current_pg_ind);
}
}
There is a good deal going on here but I don't understand why one browser is so much quicker at performing these button clicks than IE.