I need to use the function live on the document ready.

I tried this code: (This does not work correctly.)

Thanks for the advice.

$(document).live('ready', function() {

 $(".icons").contextMenu(
                { 
                    menu: 'menuIcons'                    
                }, 
                function(action, el, pos) 
                { 
                    contextMenuWork(action, el, pos); 
                }); 

function contextMenuWork(action, el, pos) {
            switch (action) {
                case "open":
                    {
                        alert("open");
                        break;
                    }
            }
            }


});
link|improve this question

Why do you need to make it live? – Dennis Sep 15 '11 at 13:49
Content loading via Ajax. – Jenan Sep 15 '11 at 13:50
Ready only gets fired once at the beginning. AJAX calls won't fire another ready event. – Dennis Sep 15 '11 at 13:52
Using ajax loading class icons. Icons can not load using ready. – Jenan Sep 15 '11 at 13:54
feedback

3 Answers

up vote 1 down vote accepted

try this:

function contextMenuWork(action, el, pos) {
  switch (action) {
    case "open": {
      alert("open");
      break;
    }
  }
}
$(".icons:not(.live)").live('click',function(e){
  if (e.which === 2) {
    e.preventDefault();
    $(this).addClass('live').contextMenu({ 
      menu: 'menuIcons'                    
    }, 
    function(action, el, pos) { 
      contextMenuWork(action, el, pos); 
    }).trigger({type:'mousedown',button:2}).trigger({type:'mouseup'});
  }
});

it uses late binding to bind to the event when the element is right clicked; it then re-triggers the right click event.

link|improve this answer
feedback

$(document).live() doesn't really make sense, since there can only be one document and it can never be re-created without reloading the page.

You want to call:

$(document).ready(function() {...

If the document DOM object is already loaded, jQuery will call your function immediately.

link|improve this answer
I need to use live, because the data loading via Ajax. – Jenan Sep 15 '11 at 13:51
@Jenan you can't as it has been pointed out multiple times, the ready event only gets called once; when the page loads. using .live with it makes no sense. What are you actually trying to do? – Kevin B Sep 15 '11 at 14:27
feedback

In your AJAX code when when you know what data you can bind the plugin on that data when you have appended it to the DOM

(function() {
    var contextMenuWork = function(action, el, pos) {
        switch (action) {
            case "open":
            {
                alert("open");
                break;
            }
        }
    };

    $.ajax({
        url: myUrl,
        success: function( data ) {

        $("body").replaceWith(data); // Example!

        $(".icons", data).contextMenu({
            menu: 'menuIcons'                    
        }, function(action, el, pos) {
            contextMenuWork(action, el, pos); 
        }); 

        }
    });
})();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.