Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Iogan iogan18tm.nm.ru

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Dom created - cant attach event

// description of your code here


function yearAdd(){
    $.log("add");
}


dayDel = function dayDel(t){
    $.log(this);
    $.log(t.target);
    $.log('del');
}


$(document).ready(function(){
    var b = $("<b class='del'>x</b>").click(dayDel);
    $("div.day").append(b);
//   b = $("<b class='add'>+</b>").click(yearAdd)
//    $("div.year center").append(b);
});

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS