Hello,
I have this function in Javascript, which is calling a server-side Java method and is working fine:
I would like to tansfer the var country ar a parameter to getCountByCountry(), how do I do it?
I have this function in Javascript, which is calling a server-side Java method and is working fine:
Code:
function setCountryData(currentObj)
{
var country = currentObj.title;
currentObj.title = '<%=popC.getCountByCountry()%>'
}
I would like to tansfer the var country ar a parameter to getCountByCountry(), how do I do it?