I've two separate HTML file and .js file. I have a calculate method which return the result in the javascript file.
My question is how to set a textbox value from a javascript return value. Or at least from a separate javascript file. Initially I tried below which doesn't work as javascript and html are separated.
function Calculate(ch)
{
//...
document.getElementById('Input').value = resultValue;
}
Thanks!