Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,
I have a coding in javascript which make error in safari browser like"Maximum call stack size exceeded"....

In this case any possibility to ""resize"" the stack to contain data without error occur....
Posted
Comments
Peter_in_2780 28-Jun-12 3:56am    
My guess is that, even if you could do it, that would not help. Instead, look for somewhere in your code where you are (directly or indirectly) making a recursive call. Infinite recursion is the most common reason for stack overflow.
[no name] 28-Jun-12 9:29am    
A better question is why are you reposting this?
vivekx2 28-Jun-12 10:30am    
Wes Aday:: Because you need not answering for any questions correctly....
[no name] 29-Jun-12 10:30am    
Wow... is that supposed to mean something?

1 solution

"Maximum call stack size exceeded"
It means that somewhere in your code, you are pushing items onto the stack without popping them off. In other works, calling a particular method again and again which is going into a deep loop, exhausting the stack limit. Generally, this happens in case of recursive functions.


any possibility to ""resize"" the stack
Thus the answer to this is 'no'. You need to see/find and resolve the issue where things are getting stacked.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900