Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
94
rated 0 times [  101] [ 7]  / answers: 1 / hits: 42517  / 14 Years ago, wed, december 15, 2010, 12:00:00

Is it possible to add item to the default browser right button click menu?


More From » html

 Answers
147

One option is to replace the context menu with your own JavaScript triggered equivalent.



Firefox implemented the menu element where you can add to the existing context menu. It was also implemented in Chrome behind a flag. Unfortunately this feature has been removed from the W3C standard due to a lack of implementation interest.



<menu type=context id=mymenu>
<menuitem label=Refresh Post onclick=window.location.reload(); icon=/images/refresh-icon.png></menuitem>
<menuitem label=Skip to Comments onclick=window.location='#comments'; icon=/images/comment_icon.gif></menuitem>
<menu label=Share on... icon=/images/share_icon.gif>
<menuitem label=Twitter icon=/images/twitter_icon.gif onclick=goTo('//twitter.com/intent/tweet?text=' + document.title + ': ' + window.location.href);></menuitem>
<menuitem label=Facebook icon=/images/facebook_icon16x16.gif onclick=goTo('//facebook.com/sharer/sharer.php?u=' + window.location.href);></menuitem>
</menu>
</menu>


To make an element use this context menu, add the contextmenu=mymenu attribute to it. You can see here that mymenu matches the id attribute of the menu element.



Source



Demo


[#94598] Monday, December 13, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
monetm

Total Points: 615
Total Questions: 103
Total Answers: 119

Location: Finland
Member since Fri, Oct 21, 2022
2 Years ago
monetm questions
Fri, Feb 26, 21, 00:00, 3 Years ago
Wed, Sep 9, 20, 00:00, 4 Years ago
Sun, Jul 26, 20, 00:00, 4 Years ago
Thu, Jun 11, 20, 00:00, 4 Years ago
;