Estoy usando Jquery para agregar elementos a un elemento y he agregado un clic en uno de los <td> para llamar a una función presente en el mismo archivo.
Aquí está el código para el elemento:
let x = 0; let element = ` <td class="px-4 py-3 text-sm"> <button onclick="deleteChap(${x})"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="text-red-600 w-6 h-6" viewBox="0 0 16 16"> <path d="M2.5 1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1H3v9a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V4h.5a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1H2.5zm3 4a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 .5-.5zM8 5a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-1 0v-7A.5.5 0 0 1 8 5zm3 .5v7a.5.5 0 0 1-1 0v-7a.5.5 0 0 1 1 0z" /> </svg> </button> </td>` $('#holder').append(element)esta es la funcion
function deleteChap(x) { let chapid = chapids[x]; Swal.fire({ title: `Are you sure you want to delete the chapter? This action is irreversible.`, showCancelButton: true, confirmButtonText: 'Yes, delete it!', }).then((result) => { if (result.isConfirmed) { supabase.from('chapters').eq('id', chapid).delete().then(({data, error}) => { if (error) { erroralert(error.message); } else { successalert(`Chapter ${chapternum} - ${title} deleted successfully.`); window.location = `/dashboard/series/${seriesid}`; } }) } }) } Recibo el siguiente error cuando hago clic en uno de los botones: ReferenceError: Can't find variable: deleteChap
El archivo js está conectado al archivo html con <script defer src="/js/dnovelinfo.js" type="module"></script>
¿Puedo obtener ayuda?
Según @Bravo y @Always Helping, probé window.deleteChap = function deleteChap() y funcionó.