Possible Duplicate:
If Javascript has first-class functions, why doesn’t this work?
When I try to make an alias function for document.getElementById as below:
f = document.getElementById;
But, when I try to call:
var e_fullname = f(“fullname”);
It was rised an error: Could not convert JavaScript argument
And below is OK:
var e_fullname = f.call(document, “funname”);
Can you tell me why?