Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to submit a form with a script?

I know it must be because these days there are tons of forms that ask you to fill in numbers. But what script can do this anyway? How is it done using PHP, Javascript or jQuery... ajax?

For example. I am uploading images and info about products on a website. I am wondering if I have to mannually go to the website or if I can submit different info from my database. Make sense?

share|improve this question
Why the minus one? If your going to put a minus one just explain what I did wrong. – Papa De Beau Jun 12 '12 at 20:59
i gave a +1 , b/c of that guy the first day of posting! So, you seem to have 2 downvoters. – Har Jun 13 '12 at 18:13

2 Answers

Use jQuery.ajax() to send a request to a server side function. http://api.jquery.com/jQuery.ajax/

share|improve this answer

Yes, it's possible.

Using AJAX (jQuery has a bunch of useful and easy-to-implement AJAX methods) you can pass data to your server. There are a bunch of security issues regarding cross-domain AJAX though, and if I understand you correctly, this is what you're trying to achieve.

Read more: http://api.jquery.com/jQuery.ajax/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.