Hoping someone can help please…
I have an onClick handler for one of my elements:
export function container2_click(event, $w) {
$w (“#inputRecipientName”).value = $w (“#textMemberName”);
}
The trouble is, where the first “$w” is used, I am trying to access a text input box on my page called “inputRecipientName”, but inside this function, $w is an argument to the function (which is a selector for a repeater).
How do I access the $w for the whole page, when I am inside a function which has a $w argument?