up vote 0 down vote favorite
share [g+] share [fb]

I have 3 buttons and I have the code to upload the files.

First button

I want to be able to click and upload a file. After this action I would also like to disable the button.

Second button

Same as the first.

Third button

After both files are uploaded I want to enable the third button and show a form using an iframe.

How do I code this? Or can you point me toward some tutorials?

link|improve this question
This programming question will be move to the correct place. Follow it. You may also need to read this: meta.stackoverflow.com/questions/2508/… – random Jan 26 '10 at 5:20
feedback

migrated from superuser.com Jan 26 '10 at 5:25

This question came from our site for computer enthusiasts and power users.

1 Answer

As far as i could understand your question, you can disable the buttons this way after they are clicked:

<input type="button" onclick="this.disabled = true;">

And show the form in iframe using scr attribute of the iframe.

<iframe src="path-to-file-of-your-form.php">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown