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 6854567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:38:57+00:00 2026-05-27T01:38:57+00:00

I have a search form in Django. When the user click in the submit

  • 0

I have a search form in Django. When the user click in the submit button, the page reload and gets the new elements in a query. I’m trying to do this in an Ajax Query, but when I get the elements in the success option, I don’t know how to change (assign) the new data to the variable.

JS

   $.ajax({
        url: 'url', 
        type: "POST",
        data: "name=" + selected,
        success: function(data){
            alert(data);
        },
        error: function (xhr, textStatus, thrownError){
            alert("xhr status: " + xhr.statusText);
        },
    });

view

 def search(request, template_name="search/search.html"):

    if request.method == 'POST':

       search_terms = request.POST.get('name')

       t_places = Place.objects.filter(category__in=search_terms)
       places =  TranslatedPlace.objects.filter(place__in=t_places)

      return HttpResponse(places)

HTML

 {% for item in places %}
     <li class="search_item">
        <div>{{ item.name }}</div>
        <div>{{ item.owner }}</div>
        <div>{{item.place.category }}</div>
        <div>{{item.locality}}, {{item.county}}</div>
     </li>
 {% endfor %}

When I receive the new data in the ‘data’ variable in Ajax how I can change it in the Django ‘places’ variable?

  • 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-27T01:38:58+00:00Added an answer on May 27, 2026 at 1:38 am

    you can modify the following code inside the ajax success handler

    $("li.search_item").find("div").each(function(i,j){
    $(j).html("one"+(i+1));
    });
    

    http://jsfiddle.net/3nigma/AueSp/1/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a search form with a query builder. The builder is activated by
I have a search form and result list. The form allows the user to
I have a search form used to query service provisions, which I will call
what I have: a google search form (displayed on all pages) a wordpress page
I have a search form that the user can search for an Article content
i have a search form on every page, hence i put it on the
I have a search form regarding property search having some elements on which search
i have a search form page, which takes me to reslutant page and show
I have web search form, When i submit my search in the search box,
I have a search form on a previous page where I allow users to

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.