Skip to main content
Daily.createTransparentFrame({ properties }) Prebuilt Custom Creates a DailyCall instance with a transparent, full-page Daily Prebuilt iframe overlaid on the page. The iframe ignores all pointer events, so clicks pass through to content beneath it. Use this when you want Daily Prebuilt’s UI to float over your own page without blocking interaction.

Parameters

properties
DailyCallOptions
Optional configuration. If url is not set here, it must be provided when calling join() or load(). See DailyCallOptions for the full list of options.

Return value

Returns a new DailyCall instance.

Example

const call = Daily.createTransparentFrame({
  url: 'https://your-domain.daily.co/room-name',
});

await call.join();

See also