Мне нужна помощь с кодом Embedded Checkout.Я хочу сделать автоматическую высоту iframe
, когда люди на мобильном устройстве.Любая помощь будет отличной.Код для виджета ниже.
КОД
<div id="eventbrite-widget-container-38673272800"></div>
<script="https://www.eventbrite.com/static/widgets/eb_widgets.js">. </script>
<script type="text/javascript">
var exampleCallback = function() {
console.log('Order complete!');
};
window.EBWidgets.createWidget({
// Required
widgetType: 'checkout',
eventId: '38673272800',
iframeContainerId: 'eventbrite-widget-container-38673272800',
// Optional
iframeContainerHeight: 500, // Widget height in pixels. Defaults to a minimum of 425px if not provided
onOrderComplete: exampleCallback // Method called when an order has successfully completed
});
</script>