> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Show action button

> Makes a previously hidden action button visible in the inventory UI.

Makes a previously hidden action button visible in the inventory UI.

<CodeGroup>
  ```lua Export theme={null}
  exports['jaksam_inventory']:showActionButton(id)
  ```

  ```lua Example theme={null}
  -- Show a button that was registered as hidden
  exports['jaksam_inventory']:showActionButton('police_actions')

  -- Show button when player gets a specific job
  AddEventHandler('esx:setJob', function(job)
      if job.name == 'police' then
          exports['jaksam_inventory']:showActionButton('police_actions')
      end
  end)
  ```
</CodeGroup>

### Parameters

| Name | Data Type | Description                                 |
| ---- | --------- | ------------------------------------------- |
| `id` | string    | The unique identifier of the button to show |

### Return value

None.


## Related topics

- [Action Buttons](/jaksam-inventory/guides/action-buttons.md)
- [Client](/jaksam-inventory/functions/client/index.md)
- [Register action button](/jaksam-inventory/functions/client/register-action-button.md)
- [Hide action button](/jaksam-inventory/functions/client/hide-action-button.md)
- [Unregister action button](/jaksam-inventory/functions/client/unregister-action-button.md)
