I have an object that I need to pass to a function, this function is trigger via onClick
and onKeyUp()
, but I couldn't make it work.
Although I can pass values to it.
function myFunc(myObj) {
$("<button type="button" onclick='otherFunction( $(\"#elem\").val() )'
onkeyup='otherFunction( $(\"#elem\").val() )'> CLICK IT </button>"
}
As you can see, i have a otherFunction
and I Can pass the $("#elem").val()
as a parameter. But I need to also pass myObj
to it.
Tried everything I could think of and I was unable to make it work.
Obs: myObj
is a marker from googleMaps, so I can't just pass it's attributes values. I need to access the full object on my second function.
Because I need to do something like: myObj.setOptions(.....)