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.

I am doing a javascript program to drag and drop users in groups. I want save the configuration of users and groups in the db. If I can make a post request, I will do this save easly in a view.

So, I have thought to create a post request in javascript, is it possible, safe ?

Is there any better possibility with django ?

share|improve this question

1 Answer

up vote 2 down vote accepted

Are you using jQuery? If so check this out: http://api.jquery.com/jQuery.post/

you can call something like this:

$.post('script_to_run.php?infotosave=3');

And then you create the 'script_to_run.php' file to query your database and store any information that you need to.

You can do it with just javascript (no jQuery) but it is much simpler with jQuery

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.