¿Cómo hago esto?Javascript eval() para la función con argumento
function myUIEvent() {
var iCheckFcn = "isInFavorites";
var itemSrc = ui.item.find("img").attr("src");
if (eval(iCheckFcn(itemSrc))) { alert("it's a favorite"); }
function isInFavorites(url) { return true; } // returns boolean
Es posible que desee comenzar escribiendo un código sintácticamente válido. Te estás perdiendo un corsé de cierre en algún lugar allí. –