jQuery 1.7\'s .on() and .off() methods are supposed to replace .live() and such.
.on()
.off()
.live()
I tried it with a dynamic item:
"Bind" with:
$(document).on('click','.myDiv',function(){ ... });
And "unbind" with:
$(document).off('click','.myDiv');