disable context menu for future elements

disable context menu for future elements

  1. $('a').bind("contextmenu",function(){
  2.     //do something
  3.     return false;   
  4. });
This is the code to disable right click menu when we right click on "a" tag. But it doesn't work on elements created on the fly. Do you guys know how to tackle this? Please teach me.