JSFiddle - React, Tailwind, and code Playground

HTML

<div class="gallery_content_wrap">
    <!-- video wrap-->
    <div class="gallery_photo_wrap">
        <div class="gallery_bg_wrap">
            <input type="hidden" value="10" name="selectypeaccept">
            <input type="hidden" value="photos" name="subadmintypeaccept">
            <div name="photosacceptdiv" class="gallery_bg">
                <img width="200px" border="0" height="148px" src="http://farm8.staticflickr.com/7180/6846918679_7891edd209_t.jpg">
                <br>
                <input type="text" value="" id="phototitle">
                <input type="radio" value="1d7457596c0f202ae373de1737bb0e4a.png" name="photosaccept">
            </div>
        </div>
    </div>
    <!-- video wrap-->
    <div class="gallery_photo_wrap">
        <div class="gallery_bg_wrap">
            <input type="hidden" value="10" name="selectypeaccept">
            <input type="hidden" value="photos" name="subadmintypeaccept">
            <div name="photosacceptdiv" class="gallery_bg">
                <img width="200px" border="0" height="148px" src="http://farm7.staticflickr.com/6186/6054843777_4e90c30827_t.jpg">
                <br>
                <input type="text" value="" id="phototitle">
                <input type="radio" value="3.png" name="photosaccept">
            </div>
        </div>
    </div>
    <!-- video wrap-->
    <div class="gallery_photo_wrap">
        <div class="gallery_bg_wrap">
            <input type="hidden" value="10" name="selectypeaccept">
            <input type="hidden" value="photos" name="subadmintypeaccept">
            <div name="photosacceptdiv" class="gallery_bg">
                <img width="200px" border="0" height="148px" src="http://farm8.staticflickr.com/7021/6846957961_779518a6c5_t.jpg">
                <br>
                <input type="text" value="" id="phototitle">
                <input type="radio" value="9d0757dd339b0b1afa3aabe6b1a50cda.png" name="photosaccept">
            </div>
        </div>
    </div>
    <!--...

JavaScript

$("[name=submitaccept]").click(function () {
     checktype();
 });

 function checktype() {
     $("[type=radio]").each(function () {
         if ($(this).is(':checked')) {
             alert($(this).closest("div.gallery_bg").find("input[type=text]").val());
         }
     });
 }