TreeMap and click event
How to generate onclick event in开发者_运维知识库 TreeMap
I think your are asking for Jquery treemap plugin. If so, I have done this once. check the below code
$('.treemapCell').each(function () {
$(this).find('span').click(function () {
//Code
});
});
Cheers!!
精彩评论