Laravel Livewire: jQuery not working in child component loaded via @if statement
PHP Snippet 1:
$this->emit('your_event');
PHP Snippet 2:
@section('script')
<script>
window.livewire.on('your_event', message => {
alert('go');
// your js code
});
</script>
@endsection