> 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.

## handraised

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

Whether the participant has raised their hand.

## **Examples**

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