how to open a popup menu (with a taphold)

how to open a popup menu (with a taphold)

Hi
In many apps tapholding an item opens a popup menu. I need this functionality too.
So far I could not find out how to do this in jquery mobile.

This is my state of knowledge:
  1. $('.aBunchOfTapholds').bind('taphold', function(e){

          var elem = $(this); //get's tapped object

          // now open a popup menu. How?

    });

I've seen dialogs. But it seems that they always fill the width of the page.
Is it possible to set the width of a dialog?