Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Coding guide: Action menus

Download resources

Here you can find examples of how to create action menus on Firefox OS, as well as downloads for the CSS and image resources used by the built-in apps on Firefox OS. You can copy these resources into your app and make use of them to build apps that match these apps' appearances.

Note: Object menus are implemented using the same code; the only difference is that you never use a title in an object menu.

Implementing action menus

To implement an action menu using the style shown here, place the CSS and media files into your app and then import the CSS using the @import at-rule:

@import url(resources/action_menu.css);

Make sure the media files are in the location expected by the CSS (either by placing them in a corresponding location or by revising the CSS).

Examples

With title

HTML to create the menu

The HTML below creates the dialog with four buttons, one of which is disabled.

<form role="dialog" data-type="action" onsubmit="return false;" id="sample-menu">
  <header id="sample-title"> Title </header> <!-- this header is optional -->
  <menu>
    <button id="button1"> Action 1 </button>
    <button id="button2" disabled> Action 2 (disabled) </button>
    <button id="button3"> Action 3 </button>
    <button id="cancel"> Cancel </button>
  </menu>
</form>

JavaScript content

The JavaScript below simply adds code to some of the buttons to change the title of the dialog when clicked.

var btn = document.querySelector("#button1");
btn.addEventListener("click", function() {
  var title = document.getElementById("sample-title");
  title.innerHTML="Button 1";
});

var btn = document.querySelector("#button3");
btn.addEventListener("click", function() {
  var title = document.getElementById("sample-title");
  title.innerHTML="Button 3";
});

Working demo

You can try out the action menu in this live demonstration.


Firefox OS live demos generally require a Gecko-based browser, and work best in recent builds of Firefox.

Without title

HTML to create the menu

The HTML below creates the dialog with four buttons, one of which is disabled.

<form role="dialog" data-type="action" onsubmit="return false;" id="sample-menu">
  <menu>
    <button id="button1"> Action 1 </button>
    <button id="button2" disabled> Action 2 (disabled) </button>
    <button id="button3"> Action 3 </button>
    <button id="cancel"> Cancel </button>
  </menu>
</form>

Working demo

You can try out the action menu in this live demonstration.


Firefox OS live demos generally require a Gecko-based browser, and work best in recent builds of Firefox.

 

Document Tags and Contributors

 Contributors to this page: chrisdavidmills, openjck, Sheppy, lmorchard
 Last updated by: chrisdavidmills,