I have a function that gets called from dynamically generated html, but its not being executed
The function.
$.check = function(s){
alert (s);
}
....and then... the value of the contents of the following function object is the above function's call.
value is var s = 'hey';$.check(s);
function( event, ui) {
//////The following does nothing, not even an error
return ui.item.value;
}
How do I execute the function stored in "value";
valuethen call likeui.item.value();