Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6682081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:39:51+00:00 2026-05-26T04:39:51+00:00

Event after which i am sending ajax is not submit. I even don’t have

  • 0

Event after which i am sending ajax is not submit. I even don’t have sumbmin button. This is part of my jquery:

              var description_data = $('#description_form').serialize();
              alert(description_data)
              $.ajax({                  
                  url: '/accounts/profile/add_description/',
                  type: 'POST',
                  data: description_data,
                  success: function(data){alert('ok')}
              });

and my view.py

def add_description(request):
    if request.is_ajax() or request.method == "POST":
        form = DescriptionForm(request.POST, prefix="description")
        if form.is_valid():
            user = request.user
            profile = user.get_profile()                
            description = form.cleaned_data['content']
            profile.description=description
            profile.save()
            response = HttpResponse()
            response['Content-Type'] = "text/javascript"
            response.write(serializers.serialize('json', [profile], fields=('description')))
            return response
        else:
            return HttpResponse('form invalid')    
    else:
        return HttpResponse('error')

Ajas is sent not by submit event, but when it is send like that there request.is_ajax() or request.method=="POST" return False. How can i make it working?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:39:52+00:00Added an answer on May 26, 2026 at 4:39 am

    You probably need to call preventDefault, to stop the click event submitting the form before it runs the Ajax request.

    $('#myButton').click(function(e) {
      e.preventDefault;
      //Your code from above
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a race condition in which I do not want an AJAX call
Need to know which event triggered after text selection done in Apple iPad. It
Does anyone know which event is fired after a view is rendered in backbone.js?
I am having a div, which should be centre of the window, even after
I'm making a php file that will run an event after five minutes have
I have two pages, on the first page after an event happens I change
I have a button edit in every article, once the author of this article
I have a CFC file which handles all of the emails I'm sending form
This is just a general question. Which is better, traditional ajax or the jquery
I want to fire an event after loading all images. And also, I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.