Tristan Nohrer
Tristan Nohrer

Reputation: 97

What does this iframe do?

<iframe id="esw_storage_iframe" src="https://service.force.com/embeddedservice/5.0/esw.html?parent=https://firstfinancialstage-65.adobecqms.net/personal.html" style="display: none;"></iframe>

From what I can tell it just references the home page

Edit: The iframe is placed on the same page it references as the parent. The second link at the end of the iframe is the same page it is on. I'm confused as to why the iframe would reference the same page it is placed on.

Upvotes: 0

Views: 144

Answers (1)

Alexander Jordanov
Alexander Jordanov

Reputation: 33

Usually iframe in HTML is used to embed another document or webpage in the current HTML document. SO if we look at you code, we have id = esw_storage_iframe (maybe some element's id from website), the source website is just a blank page (i did check it), in the end we have display: none; : it makes it invisible.

Upvotes: 2

Related Questions