What do you guys think is the correct usage of the 'menu' and 'command' tags
in HTML5?

Eg: to display a menu like so:

File -> New, Save, Close
Edit -> Undo, Cut, Copy

is the following mark-up correct?

<menu type='toolbar'>
  <menu type='list' label='File' >
     <command label='New'/>
     <command label='Save'/>
     <command label='Close'/>
  </menu>
  <menu type='list' label='Edit'>
      <command label='Undo'/>
      <command label='Cut'/>
      <command label='Copy'/>
  <menu>
</menu>

I'm thinking of writing a new jquery menu widget which uses primarily the
same interface described here:
http://wiki.jqueryui.com/Menu
so that it can eventually be merged back into the labs/fg-menu.

Salman
-- 
View this message in context: 
http://old.nabble.com/HTML5-Menu-Tag-and-jquery-ui-menu-toolbar-tp27148131s27240p27148131.html
Sent from the jQuery UI Discussion mailing list archive at Nabble.com.

-- 
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to jquery...@googlegroups.com.
To unsubscribe from this group, send email to 
jquery-ui+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en.


Reply via email to