D ear All, 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 make call showUser() from My.Js itself, Any one suggest me How to make call, should i include anything?