> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# handraised$

> Observable indicating whether the participant has raised their hand.

```ts
get handraised$(): Observable<boolean | undefined>
```

Observable indicating whether the participant has raised their hand.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`handraised$`](/docs/browser-sdk/v4/reference/participant#handraised-1)

## handraised

```ts
get handraised(): boolean
```

Whether the participant has raised their hand.

#### Inherited from

[`Participant`](/docs/browser-sdk/v4/reference/participant).[`handraised`](/docs/browser-sdk/v4/reference/participant#handraised)

## **Examples**

```ts
selfParticipant.handraised$.subscribe((handraised) => {
  console.log('handraised:', handraised);
});
```