My jquery code is divided file is divided over 2 files.
In one of the file, I define a function
function something(input){ //does something } calling this function only works when the caller line is in the same file. But I need to call it from both files.
If I switch the function to the second file, again I get the same issue. The code in the same file can read it, but not the code in the other file.