Hello good afternoon I have this code but I know how to make the Div actulize with your example ID this div is to see the data in the .php file
<div id="album_paint_content"></div>
and these images in ID have the post that I want to see
album_content ID
<img id="album_content1" class="img_thumbnails" src="imagen"/>
<img id="album_content2" class="img_thumbnails" src="imagen"/>
<img id="album_content3" class="img_thumbnails" src="imagen"/>
<img id="album_content4" class="img_thumbnails" src="imagen"/>
here is the js to do that but I do not know how to do that from an ID because only the first is actuzlized but the others do not
$(document).ready(function(){
$('#album_content').click(function(){
$("#album_paint_content").load("paint_new.php");
});
});
Well I hope you help me and thank you