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 a select from table which does not have column that tells when
I have need to select a number of 'master' rows from a table, also
I need to select data when a page is viewed and update the 'views'
I need to select a bunch of data into a temp table to then
I need the Select Data Source dialog added to my application so that the
I have the following SQL Statement. I need to select the latest record for
I need to execute a select and then update some of the rows in
i have a input tag which is non editable, but some times i need
I need to select a datetime column in a table. However, I want the
I need to select the position of a following sibling via XSL. This is

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.