動的に変化する id にバインドしようとしていますが、コードは静的 id に対して正常に動作しますが、動的にバインドするために使用すると、バインドされません。
$("#placeholder"+id).bind("\""+"plothover"+id+"\"", function (event, pos, item) {--some code here --}
このように使用すると、正常に動作します
$("#placeholder"+id).bind("plothover", function (event, pos, item) {--some code here --}