
August 15th, 2012, 06:32 AM
|
|
Contributing User
|
|
Join Date: Jul 2012
Posts: 35
Time spent in forums: 8 h 31 m 13 sec
Reputation Power: 1
|
|
|
Iframe load file on src only when form is submit
Well the title says the problem.
I have a form and an iframe, like this:
Code:
<form action="image.php" method="post" enctype="multipart/form-data" target="target">
<input id="file" type="file" name="file"/>
<input id="submit" type="submit" name="submit" value="Submit"/>
</form>
<iframe id="target" name="target" src="image.php" style="display:none;"></iframe>
I need to only load the src file on iframe when the form is submited and not when the page is loaded.
How can i resolve this?
Thanks Community
Last edited by Alex1234 : August 15th, 2012 at 06:36 AM.
|