Re: How do you use a link as a post request?

2012-03-05 Thread bb6xt
You're welcome. I missed one detail in my last post. Here is it: On Mar 5, 9:27 pm, leaks wrote: > thanks bb6xt..! I couldn't find an answer so I went with a forms POST > request... Thank you anyway... Will give it a try :) -- You received this message because you

Re: How do you use a link as a post request?

2012-03-05 Thread leaks
thanks bb6xt..! I couldn't find an answer so I went with a forms POST request... Thank you anyway... Will give it a try :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit

Re: How do you use a link as a post request?

2012-03-05 Thread bb6xt
You can achieved that by using javascript or jquery. But personally I prefer jquery so I'll illustrate with a jquery example. # in your template funcion submitForm(){ $.ajax({ url: "some url", type: "POST", data: $("#myform").serialize(), success: function(){//do magic} }); Submit Note

Re: How do you use a link as a post request?

2012-03-03 Thread Daniel Roseman
On Saturday, 3 March 2012 10:21:39 UTC, leaks wrote: > > How do you use a link as a post request? > this is a thing that I have never done before... maybe use it inside a > form? > I searched and didn't find anything similar in django... > > Thanks in advance! > Yo

How do you use a link as a post request?

2012-03-03 Thread leaks
How do you use a link as a post request? this is a thing that I have never done before... maybe use it inside a form? I searched and didn't find anything similar in django... Thanks in advance! -- You received this message because you are subscribed to the Google Groups "Django users&q