Search.../

title

Sets or gets the title displayed in a video player.

Notes:

  • Setting a video title only works when a video player is presenting a video uploaded to your site.
  • Getting a video title 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 title

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

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