livequery issue

livequery issue

Hello,

When I use livequery like this it works perfectly:
  1. $('a') .livequery('click', function(event) { alert('clicked'); return false; });
But when I want to use it with another plugin like contextMenu, it doesn't work ...

  1. $("#selector").livequery("contextMenu({ menu: 'myMenu'}",
  2.       function(action, el, pos) {
  3.             alert(action);
  4. });
Does anybody knows what I am doing wrong here? I'm have searched but I'm only a beginner ...

Thank you for any help!

Christophe