I have one form and two submit buttons. at the moment they are like this:
What i would like to do is that the first submit buttons open in some nice popup window, like http://fancybox.net/
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would set up your fancybox to open a window for a specific class:
the first button would look like this:
Then have your second button the ACTUAL submit button:
Also, if you wanted the form data in the fancy box, use jQuery to scrap the relevant info and drop it in the box 🙂
To scrape the form:
Call the above in a
$('#fancyButton').click()function..then you can reference each field by going
formData['insert field name here']