// show image function show_image_box($file_id){ // let parent_element = $(element).parent(), // image_material_boxed = $('img:first', parent_element); // // $(image_material_boxed).materialbox(); // $(image_material_boxed).materialbox('open'); $.ajax({ url: '/show-photo/'+$file_id, type: 'post', data: { module_public_key: module_id, file_guid : file_guid, lang: $lang }, success: function (data) { $("#guid_images_selected-"+module_id).val(file_guid); $('#wrapper_images_selected-'+module_id).html(data); } }); } window.show_image_box = show_image_box;