Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

103
Views
catch non window event with alpinejs

with alpinejs I can easily catch custom window events.

markup

<div x-data="map_data" @mapupdate.window="updateTodos">

...

js

const sendEvent = (name, payload) => {
    var evt = new CustomEvent(name, {detail: payload});
    window.dispatchEvent(evt);
}
sendEvent("mapupdate", {"okay":"roger"})

Let's say I don't want to create a window event but catch a "local" event coming from leaflet. This is how I can normally catch the event:

map.on('zoomend', function() {
    console.log("end");
});

Is it possible to instead dispatching a custom event again to directly catch the leaflet event with alpinejs?

<div x-data="map_data" @zoomend.map="updateTodos">
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!