Search.../

unmute( )

Unmutes audio volume.

Syntax

function unmute(): Promise<void>

unmute Parameters

This function does not take any parameters.

Returns

Fulfilled - When the volume has been unmuted.

Return Type:

Promise<void>

Was this helpful?

Unmute volume

Copy Code
1$w("#myAudioPlayer").unmute();
Unmute volume and log a message when done

Copy Code
1$w("#myAudioPlayer").unmute()
2 .then( () => {
3 console.log("Done with unmute");
4 } );