Hello,
I am using the context menu with 3 <td id> verticals, horizontals and all
articles
In it I have 3 options vert, horiz, and remove that display when you right click
Please how to make option "remove" not to display when in td allarticles?
$('#$id').contextMenu('chooser', {
bindings: {
'vert': function(t) {
$('#$id').hide().clone(true).appendTo('#verticals').show();},
'horiz': function(t) {
$('#$id').hide().clone(true).appendTo('#horizontals').show();},
'remove': function(t) {
$('#$id').hide().clone(true).prependTo('#allarticles').show();}
}
});
This is example page (right click)
http://www.vbcover.com/forums/mytest.php
Thanks
_______________________________
Lionel Martelly