In this code eval function is used:
function in string has 3 params, but eval runs function with 2 params:
Why ?
In this code eval function is used:
function in string has 3 params, but eval runs function with 2 params:
Why ?
You cannot have 2 functions with the same name in the same scope.
There is no function overloading in javascript. (thanks ibrahim mahrir).
Delete the openURL
function that starts on line 5317.
2019 Edit: It is possible to call different methods based on the number of arguments: pattern: https://johnresig.com/apps/learn/#90