クリックイベントがあり、イベントハンドラー内に文字列値を返すと想定される関数があります
例えば:
$('.customDropDownList li').click(function(){
var yourCurrentSeasonSelection = selectionReplaced(this);
//return var yourCurrentSeasonSelection from here.
});
function selectionReplaced(refT){
var valueRegistered = $(refT).find("a[href]").attr('href').replace('#', '');
....
return valueRegistered;
}
クリック後に yourCurrentSeasonSelection 変数から戻り値を取得するにはどうすればよいですか?