[jQuery] how to hide option in function
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.6000.16587" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hello,</FONT></DIV>
<DIV><FONT face=Arial size=2>I am using the context menu with 3 <td id>
verticals, horizontals and all articles</FONT></DIV>
<DIV><FONT face=Arial size=2>In it I have 3 options vert, horiz, and remove that
display when you right click</FONT></DIV>
<DIV><FONT face=Arial size=2>Please how to make option "remove" not to display
when in td allarticles?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>
$('#$id').contextMenu('chooser', {<BR>
bindings: {<BR> 'vert':
function(t) {
$('#$id').hide().clone(true).appendTo('#verticals').show();},<BR>
'horiz': function(t) {
$('#$id').hide().clone(true).appendTo('#horizontals').show();},<BR>
'remove': function(t) {
$('#$id').hide().clone(true).prependTo('#allarticles').show();}<BR>
}<BR> });</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>This is example page (right click)</FONT></DIV>
<DIV><FONT face=Arial size=2><A
href="http://www.vbcover.com/forums/mytest.php">http://www.vbcover.com/forums/mytest.php</A></FONT></DIV>
<DIV><FONT face=Arial size=2>Thanks</FONT></DIV>
<DIV><FONT face=Arial size=2>_______________________________<BR>Lionel
Martelly</FONT></DIV></BODY></HTML>