<asp:ListView runat="server" ID="lsvAccessMode" ClientIDMode="Static" OnItemDataBound="lsvAccessMode_ItemDataBound">
     <ItemTemplate>
        <div class="col-xs-6 col-md-4 col-xs-12">
            <asp:RadioButton runat="server" clientidmode="static" CssClass="customSelectBox disabled" ID="rbAccessMode" GroupName="accessMode" Enabled='<%#Convert.ToBoolean(Eval("IsSelected"))%>'  />
            <div class="customBox disabled" id="customBox">
                <strong><%# Eval("Decode1") %></strong><br>
                <img src="<%# Eval("ImagePath") %>" style="height: 80px"><br>
                <span class="help-block"><%# Eval("Decode2") %></span>
            </div>
        </div>
     </ItemTemplate>
</asp:ListView>
I have the following code above. So when i click one of the buttons above, it will append a class to it. But I am facing the following problem, i do not know what to insert into id portion of the $(' ').click function. 
Anyone able to help?
 
     
     
     
    