A "script taking too long" error generally means that you are trying to bind event handlers to too many elements, or just overloading the capability of jquery in some way. You may want to look at going "old school" and putting events inline in your html markup:
<a href="whatever" onclick="myfunction" onmouseover="myotherfunction" onmouseout="anotherfunction"> -- Josh ----- Original Message ----- From: [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Sunday, November 18, 2007 9:07 PM Subject: [jQuery] HELP: Debugging Issue On one page, Firefox throws the "a script is taking too long" message. On clicking 'Debug Script', it points to the following line of jQuery: first.push(second[i]); Which is in... merge: function(first, second) { } Assuming that there aren't any problems with jQuery, how can i find out which code is throwing this error? Thanks Fahed