Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-03-2012, 02:04 PM   PM User | #1
m2244
Regular Coder

 
Join Date: Jun 2012
Posts: 129
Thanks: 1
Thanked 1 Time in 1 Post
m2244 is an unknown quantity at this point
Why are button clicks so slow in IE

I am testing my site out with different browsers and I have noticed that with IE, when I click a button several times quickly only a portion of the clicks register. On Chrome or FF the clicks register much quicker.

Is there a way to fix this problem?
m2244 is offline   Reply With Quote
Old 10-03-2012, 02:40 PM   PM User | #2
abduraooft
Supreme Master coder!

 
abduraooft's Avatar
 
Join Date: Mar 2007
Location: N/A
Posts: 14,680
Thanks: 158
Thanked 2,182 Times in 2,169 Posts
abduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really niceabduraooft is just really nice
Quote:
Is there a way to fix this problem?
Is there a way to have a demo/some code ?
__________________
Quote:
The Dream is not what you see in sleep; Dream is the thing which doesn't let you sleep. --(Dr. APJ. Abdul Kalam)
abduraooft is offline   Reply With Quote
Old 10-03-2012, 03:31 PM   PM User | #3
m2244
Regular Coder

 
Join Date: Jun 2012
Posts: 129
Thanks: 1
Thanked 1 Time in 1 Post
m2244 is an unknown quantity at this point
Quote:
Originally Posted by abduraooft View Post
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.
m2244 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:24 AM.


Advertisement
Log in to turn off these ads.