The question is simply between
$(\"body\").click(function(e){}); vs $(document).click(function(e){});
$(\"body\").click(function(e){});
$(document).click(function(e){});
which is more efficient or advisa
Binding it to document seems to be the standard practice, so I would stick with that.
document
document is also much faster.