inside js function I'm receiving event as parameter, how do you get the value of the event target?
function myFn(event){
...
close: function(event){
var myVal = ...
/// should grab from
/// event-> arguments -> [0]->target -> property value painted in yellow (abc)
}
}
myFn
invoked? – Levins