My HTML code looks like this:
<div class="col-lg-3 col-xs-6 individual " style="display: block;">
<button style="position:relative; z-index:4; padding:8px 7px 8px 30px; font-size:16px; font-family: Calibri,Arial,Tahoma; color:black;" class="excel-button">Bajar Tabla</button>
<!-- small box-->
<div data-name="cardColor" class="small-box bg-purple">
<div class="inner">
<h4 data-name="title">Semana 9</h4>
<p data-name="dateRange">26-febrero al 02-marzo</p>
</div>
<div class="icon"><i data-name="week" class="fa">9</i></div>
<a class="small-box-footer" data-name="commentFooter">Sin enviar a revisión <i class="text-warning fa fa-exclamation-triangle"></i></a>
</div>
<div class="comment-box text-left" style="display: none;">
<div data-name="comment" class="comment-inner text-danger" style="margin-right:15px">Este reporte no ha sido enviado a revisión</div>
</div>
</div>
The outer div functions as a clickable element, and I am attempting to enable the inner button to be clickable as well. However, clicking on the button triggers the actions of the div instead of those associated with the button. How can I ensure that when the user clicks the button, it disregards the div element?