Giter Club home page Giter Club logo

Comments (13)

dawnerd avatar dawnerd commented on June 5, 2024

This would be very nice to have.

from bean.

fat avatar fat commented on June 5, 2024

is live more than just delegation added to the body?

Delegation (event bubbling) is supported by elements which natively support bubbling (so not submit, and a few other form related ones.) Beans delegation requires that you pass it a query selector.

So... by way of an example, delegation with ender would look like this (assuming a build which was ender -b qwery bean... ender automatically passes in the query selector):

$(document).delegate('.content p', function () {
   //foo
});

from bean.

dawnerd avatar dawnerd commented on June 5, 2024

I can't get event delegation to work.

$(document).delegate('#container .link', function () {
    console.log('test');
});

The target is an a tag. Full ender stack.

from bean.

ded avatar ded commented on June 5, 2024

try $("body").delegate instead

from bean.

dawnerd avatar dawnerd commented on June 5, 2024

Still nothing.

from bean.

fat avatar fat commented on June 5, 2024

lol.. i forgot that you need to specify what type of event you're listening for.... for example: click...

$(document).bind('p', 'click', function () {
  alert('boo');
});

from bean.

dvv avatar dvv commented on June 5, 2024

hehe. works for me ootb. thanks!

from bean.

ded avatar ded commented on June 5, 2024

@fat did this ever get ported as .live()?

$('p').live('click', function () {
  alert('boo');
});

// which would be this under the hood...
$(document).bind('p', 'click', function () {
  alert('boo');
});

from bean.

ded avatar ded commented on June 5, 2024

This would also be a major case to use the .selector property we tack on...

$('div p').selector // "div p"

from bean.

fat avatar fat commented on June 5, 2024

I have a branch called jquery-tests where i'm working through getting bean 1:1 with jquery events (that has live support)

from bean.

fat avatar fat commented on June 5, 2024

and yep! i'm using the .selector there! :D

from bean.

dvv avatar dvv commented on June 5, 2024

Just discovered: http://jupiterjs.com/news/why-you-should-never-use-jquery-live -- hehe. In fact, I meant namely delegate in the subject...

from bean.

ded avatar ded commented on June 5, 2024

@fat ha! awesome.
@dvv oh interesting.

from bean.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.