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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T01:21:51+00:00 2026-05-17T01:21:51+00:00

i need to select change some data and change image in own form each

  • 0

i need to select change some data and change image in own form
each from will have own preview image.
each image will get attr name “imagePreview” from selected the option.
if nothing in attr or imagePreview=”0″ will do nothing

here some of my working scrip but when I change option all image preview in DIV tag will change not just in the form…
please help me to make it work >.<

script

<script type="text/javascript">
$(document).ready(function() {
$('.choose').change(function(event) {
  var update = $(this).prev();
  //------
  var src = $("option:selected").attr("imagePreview");
  $(".imagePreview").html(src ? "<img src='" + src + "'>" : "");
  //-----
  $.post('select-change-ajax2.php', $(this).closest('form').serialize(), function(data) {
    update.html(data);
  });
});
});
</script>

html form

<form>
<div class="imagePreview">
   displays image here
</div>
( etc data this data not change )
 <div class="update">Default Data</div>
    <select name='selected' class="choose">
        <option value="1" imagePreview='/images/1.jpg'>1</option>
        <option value="2" imagePreview='0'>2</option>
       </select>
       <input type='hidden' name='do' value='go' />
</form>

<hr />

<form>
<div class="imagePreview">
   displays image here
</div>
( etc data this data not change )
 <div class="update">Default Data</div>
    <select name='selected' class="choose">
        <option value="3" imagePreview='/images/1.jpg'>3</option>
        <option value="4" imagePreview='0'>4</option>
       </select>
       <input type='hidden' name='do' value='go' />
</form>
  • 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-17T01:21:52+00:00Added an answer on May 17, 2026 at 1:21 am

    You can find the elements that matter (.imagePreview and the <option>) relatively, like this:

    $(function() {
      $('.choose').change(function(event) {
        var form = $(this).closest("form"),
            update = form.find(".update"),
            src = $(this).find("option:selected").attr("imagePreview");
        form.find(".imagePreview").html(src ? "<img src='" + src + "'>" : "");
        $.post('select-change-ajax2.php', form.serialize(), function(data) {
          update.html(data);
        });
      });
    });
    

    The key is changing $("option:selected") and $(".imagePreview") to be relative to the changes element, rather than selecting the first/all they find, respectively.

    Before it was finding the first selected <option> in any <form> and all .imagePreview elements, not by using tree traversal we’re finding the elements you want relative to the <select> (the this) that changed.

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

Sidebar

Related Questions

I need to select data from one table and insert it into another table.
I need to take some data from one table (and expand some XML on
i need to retrive some data from table registration of database to show.aspx page
I have a table where each row has some data and the user can
I am trying to make one query, to get some statistic data from database.
I need to select multiple records I use SELECT * FROM `table` WHERE `ID`
I need to select all columns from two tables, but need to be able
I need to select 5 most recent rows from cached Dataview object, is there
I need to select rows randomly from an Oracle DB. Ex: Assume a table
I need to select a field called ProgramID from a table and if the

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.