|
I have tried to use jQuery.click(), jQuery.bind(), and jQuery.live() to bind a click event handler to the submenu anchors, but these events are not firing. Any help would be much appreciated. Below is a sample of the menu structure and the jQuery code.
Where clickHandleris defined in a JS file that is included in the header of the page. |
|
All the menu shown by the component are clones of the original you wrote in the page; that's why your bind is not fired. At line 317 there's the clone action of the voices; you can try to modify this from:
to:
Adding the boolean should copy the data and the events associated as described in the jQuery doc: jQuery/clone |


