Hi,
I am trying to do something like this:
function showContent(toPopulate) {
document.getElementById(toPopulate).innerHTML = "<a href='javascript:showOtherContent(toPopulate);'>show</a>"
}
function showOtherContent(toPopulate) {...}
I am not able to send the variable toPopulate as an argument of function showOtherContent() in line 2
Thanks,
Blaise