I am trying to change product images when different colors are selected. My jQuery code works fine when I use straight HTML but when I try to change the images with the selections made with Ajax only the first selection works. It seems that my jQuery only reads the initial html and not the changes made after the initial load. I thought that .on would handle the updated html but I seem to be missing something. Any guidance would be much appreciated.
jQuery(window).load(function(){
var data = {
"1" : { img: "/test.png" },
"2" : { img: "/test_1.png" },
"3" : { img: "/test_2.png" },
};
jQuery('[name*="Color"]').on('change',function() {
var value = jQuery(this).val();
if (data[value] != undefined)
{
jQuery('#product-image').attr('src', data[value].img);
}
});});
jQuery(this).find().val();find what? – undefined Aug 4 '12 at 22:07find()finds an element in the context of the selected element, in this case there is no need for using it, you should remove it. – undefined Aug 4 '12 at 22:34