$(".fav-del").click(function(){
$(this).parent(".fav-tov").addClass("opacity");
var that = this;
setTimeout(function(){ $(that).parent(".fav-tov").addClass("none"); }, 500);
});
function FnWithCallBack(fn){
fn();
}
function FnWithName(){ alert('test'); }
FnWithCallBack(FnWithName); // Передача именованной
var fn = FnWithName;
FnWithCallBack(fn); // Через указатель
FnWithCallBack(function(){ alert('test'); }); // Анонимной
ListViewItem item = new ListViewItem(name);
item.UseItemStyleForSubItems = false;
trayMenu = new ContextMenu();
var items = trayMenu.MenuItems;
items.Add("Open", OnOpenMainWindow);
items.Add("-");
items.Add("Quit", OnQuitApplication);
private void OnOpenMainWindow(object sender, EventArgs e)
{
Visible = true;
ShowInTaskbar = true;
}