Skip to content

Instantly share code, notes, and snippets.

@shazron
Created August 10, 2011 00:16
Show Gist options
  • Save shazron/1135601 to your computer and use it in GitHub Desktop.
Save shazron/1135601 to your computer and use it in GitHub Desktop.
var toolbar = document.createElement('menu');
toolbar.setAttribute('type', 'toolbar');
toolbar.setAttribute('label', 'Home');
var commandBack = document.createElement('command');
commandBack.setAttribute('label', 'Back');
commandBack.setAttribute('accesskey', 'back');
commandBack.setAttribute('action', function() { alert('Back'); });
toolbar.appendChild(commandBack);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment