In a plugin I\'m writing, the dev can specify options, which I\'m storing and referencing like so:
(function( $, window) { $.widget(\"mobile.plug\", $.mo
You should be able to concatenate "Width" to the "panel" result:
o[el.jqmData("panel") + "Width"]
E.g., if el.jqmData("panel") is "menu" you would get o["menuWidth"].
el.jqmData("panel")
o["menuWidth"]