code addded

This commit is contained in:
2023-02-01 15:55:49 +05:30
parent 767190eca6
commit 13e4463c0e
7 changed files with 208 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
function callGallery(){
$('.PO_gallery_box').each(function(i,el){
$(el).click(function(e){
const src = $(e.target).attr('src');
$('.PO_gallery_display_img').attr('src',src)
});
});
}
function callMain(){
callGallery();
}
callMain();