I have a div that is contain inside an iframe from a external html
The html based \"context menu\" need to
As long as both frames are in the same domain, you could use Javascript to move the DOM element to the parent frame (window.parent.document.appendChild(...)
). I have done this and it works. It's just a lot of hassle and you must decide yourself whether it's worth it.
Be sure to check out bobince's comment on the issue below on how to do it.
Don't forget the child frame's style sheets don't apply to the menu once you move it to the parent.