Terry, >Well since I did not see any contact info on the page, I will just >post here. I like this plugin but at least one bug and at least one >suggestion. > >Referring to the plugin found here: >http://www.trendskitchens.co.nz/jquery/contextmenu/ > >1) If you use jquery with no conflict like I do, you get an error >which is caused by the following code at the end of the js include >file: > > $(function() { > $('div.contextMenu').hide(); > }); > >I use $t for my query calls and it does not understand $ as a query >caller. I simply moved this portion within the main function of the >include file and all seems well.
If you move that code right before the line: })(jQuery); It should work fine. Either that or change the "$" in those lines to "jQuery". As for changing the default event handler--that wouldn't be hard to do either as a setting. -Dan