IC Event Widget - Documentation

Everything you need to embed the IC Event Widget on your website.

How to Embed

Add the widget script and custom element to your HTML page:

<!-- 1. Include the widget script -->
<script type="module" src="https://events-cdn.investorcaller.com/widget/v1/ic-event.js"></script>

<!-- 2. Add the widget element -->
<ic-event team="your-team-slug" event="your-event-slug"></ic-event>

The widget uses Shadow DOM for complete encapsulation — no styles or scripts will leak into or out of your page.

Minimal Example

<!DOCTYPE html>
<html>
<head>
  <script type="module" src="https://events-cdn.investorcaller.com/widget/v1/ic-event.js"></script>
</head>
<body>
  <ic-event team="anora" event="anora-group-plc-q3-report-2025"></ic-event>
</body>
</html>

Attributes Reference

Configure the widget behavior using HTML attributes on the <ic-event> element.

Attribute Type Default Description
team string required Team slug identifying the organization
event string required Event slug identifying the specific event
theme string "light" Color theme. Options: "light", "dark"
autoplay boolean false Auto-start video playback on load (presence attribute)
slides-hidden boolean false Hide the slides panel initially (presence attribute)
video-hidden boolean false Hide the video player initially (presence attribute)
disable-toolbar boolean false Remove the toolbar for a clean, read-only presentation (presence attribute)

Examples

<!-- Dark theme with autoplay -->
<ic-event team="anora" event="my-event" theme="dark" autoplay></ic-event>

<!-- Slides-only view (video hidden) -->
<ic-event team="anora" event="my-event" video-hidden></ic-event>

<!-- Clean embed without toolbar -->
<ic-event team="anora" event="my-event" disable-toolbar></ic-event>

Live Examples

See the widget in action with various configurations on the Demo Gallery page. It includes 10 different widget configurations demonstrating all attributes and combinations.

Troubleshooting

Widget not loading

Video not playing

Slides not syncing

CORS errors

Multiple widgets on one page