I have the following Panel in my jQuery mobile app , I want to make it to be drop down as appears in the following image rather than to be slide from the page edge . Is thi
You can use popup widget to simulate dropdown menu.
As of jQuery Mobile 1.4, a new attribute data-arrow is added to popup widget. This creates an arrow which can be positioned anywhere in popup.
Arrow:
The popup can display an arrow along one of its edges when it opens if the
data-arrowattribute is set. The attribute can take a value oftrue,false, or a string containing a comma-separated list of edge abbreviations ("l" for left, "t" for top, "r" for right, and "b" for bottom). For example, if you setdata-arrow="r,b"then the arrow will only ever appear along the bottom or right edge of the popup. true is the same as "l,t,r,b" andfalseor""indicates that the popup should be displayed without an arrow.
HTML
Add data-rel="popup" to button to call popup.
Menu
To modify arrow's size, check this link.
Demo