I have Designed the Javascript function My.js it contains following code
My.js
function display(){
//Call to another Javascript function defined as ShowUser() in selectUser.js
showUser(str);
}
SelectUser.js has
function showUser(Str){
//Do the display
}
Now, my question is: I want to call showUser() from My.Js itself. Any one suggest how to make the call? Should I include anything?