Search.../

description

Sets or gets the description of a video.

Notes:

  • Setting a video description only works when a video player is presenting a video uploaded to your site.
  • Getting a video description does not work when a video player is presenting a video from Facebook, Twitch, or YouTube.

Type:

stringRead & Write

Was this helpful?

Get a video player's description

Copy Code
1let desc = $w("#myVideoPlayer").description // "Video description"
Set a video player's description

Copy Code
1$w("#myVideoPlayer").description = "Video description";