tags:

views:

135

answers:

1

I'm a newbie to iframe.
I have a page that needs to call an iframe at another subdomain passing lots of data.
I'm wondering if it's possible to submit the iframe call using a POST instead of GET. Thanks in advance

A: 

The short answer I'm afraid is no. You can pass plenty of data in the querystring to the iFrame, but HTML doesn't support the semantics to POST to an iFrame.

Doobi