JSFiddle - React, Tailwind, and code Playground

by Ketan Patel

HTML

<div class="t_mod_box">
        <input type="submit" value="Edit" class="edittopic" name="send" /> 
    </div>
    
    <div class="t_edit_cont">
       Show hide content inside here... 1
    </div>
    <div class="t_edit_cont_1" style="display:none;">
       Show hide content inside here... 1 Show hide content inside here... 1 Show hide content inside here... 1
    </div>



    <div class="t_mod_box">
        <input type="submit" value="Edit" class="edittopic" name="send" /> 
    </div>
    
    <div class="t_edit_cont">
       Show hide content inside here... 2
    </div>

JavaScript

$(function() {
    $(".edittopic").on('click', function() {
        $(this).parent().next(".t_edit_cont").toggle();
    });
})