Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show Trello in an iFrame

Tags:

iframe

trello

I am putting together a dashboard to show project progress.

It's a dead simple page - basically divided into quarters, with an iframe in each quarter.

We use Trello for our KanBan board and I want to embed it in this dashboard - unfortunately I get the following message:

This content cannot be displayed in a frame

To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.

Looking around, they for this to prevent ClickJacker attacks, but wonder if there is a way round it.

My plan B is to write a c# app that will open 4 browsers and resized them all to fit into quarters of the screen, but this is obviously a lot more work!

like image 469
Ben Avatar asked Mar 19 '23 23:03

Ben


1 Answers

Here is a jsfiddle that shows code to iframe embed a trello board:

<iframe src="https://trello.com/c/OKVduwHL.html" frameBorder="0" width="340" height="220"></iframe>
like image 197
ted.strauss Avatar answered Apr 27 '23 07:04

ted.strauss