Probé algunas formas de poder interactuar con el iframe pero no puedo agregar js al iframe
Mi código usa iframe con la fuente:
<div class='roomle-configurator--wrapper'> <iframe id="frRoomle" src="https://www.roomle.com/t/cp/?configuratorId=delife&id=delife:product_test_1&api=false" width="1024" height="768"></iframe> </div>Utilizo el siguiente código pero no funciona, creo que el problema se debe al bloqueo de src https://www.roomle.com
var script = "alert('hello world');"; $('#frRoomle').contents().find('body').append($('<script>').html(script))