DZone 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
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);
});




