Answer: Function in a Loop

If you are getting this error: InternalError: too much recursion

It simply means that you may have two functions with the same name and the same function is calling on itself, check your code to ensure you dont have duplicate functions.

If you recently copy and paste a function, you may have forgotten to rename it differently.

example code:

function myfunction(){
myfunction();
}

Hope that help.