> For the complete documentation index, see [llms.txt](https://laot7490.gitbook.io/ltbridge/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://laot7490.gitbook.io/ltbridge/ui-and-interaction/menu/open.md).

# Open

Opens an interactive context menu. Pass menu data in ox\_lib or QB format — see Menu Data reference.

{% hint style="info" %}
**Side:** Client · **Category:** Menu · **API:** `LT.Menu.Open`
{% endhint %}

## Example

```lua
local menu = LT.Menu.Open('my_menu', {
    title = 'My Menu',
    options = {
        { title = 'Option 1', onSelect = function() end },
    },
})
```

See [Menu data](/ltbridge/ui-and-interaction/menu/menu-data.md) for the full data table.

## Parameters

| Name   | Required | Description                                                                 |
| ------ | -------- | --------------------------------------------------------------------------- |
| `id`   | Yes      | Menu unique ID                                                              |
| `data` | Yes      | Menu data — see [Menu data](/ltbridge/ui-and-interaction/menu/menu-data.md) |
| `isQB` | No       | If data table is sent with QB format set to true, default: false            |

## Returns

* `table|nil`
