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;
}
}
}
});
live? – Dennis Sep 15 '11 at 13:49readyevent. – Dennis Sep 15 '11 at 13:52