Quería obtener el conteo del pie de página de la tabla en analysis/index.html y quería mostrarlo en dashboard/index.html Estoy usando la función de carga de jquery y recibo el error que dice: ingrese la descripción de la imagen aquí
//here is analysis/index.html file code <table id="recent" class="table table-striped table-responsive recent_table"> <thead ></thead> <tbody ></tbody> <tfoot ></tfoot> </table> //and here is dashboard/index.html file <script> $(document).ready(function() `enter code here`{ $("#btn1").click(function(){ $("#div1").load("/analysis/index.html table#recent tfoot") }); }); </script> // can anyone please guide me How can I do this in Jquery .