[jquery-dev] Re: Obtaining original function from $.live()

2009-08-09 Thread theallan
Hi John, No problem. I was looking to integrate support for $.live() into my Visual Event tool ( http://www.sprymedia.co.uk/article/Visual+Event ) - what I can (and will) do though is to highlight elements with a live event attached to them and just not that the source function isn't directly ava

[jquery-dev] Re: Obtaining original function from $.live()

2009-08-07 Thread John Resig
Yeah, unfortunately I think that's the best we provide at the moment :-/ --John On Fri, Aug 7, 2009 at 12:05 PM, theallan wrote: > > Hi John, > > Thanks very much for your reply and confirmation of what I though was > happening. The closest I could find was the proxy wrapper for the > function

[jquery-dev] Re: Obtaining original function from $.live()

2009-08-07 Thread theallan
Hi John, Thanks very much for your reply and confirmation of what I though was happening. The closest I could find was the proxy wrapper for the function in the cache - but of course there is no way to get the wrapped function, just the wrapper. Regards, Allan On Aug 7, 4:34 pm, John Resig wr

[jquery-dev] Re: Obtaining original function from $.live()

2009-08-07 Thread John Resig
Unfortunately the original function is kind of tucked away, since $().live() is really just a shortcut for $(document).bind("foo", fn); (well, sort of, since there's some additional overhead where the selectors are run). --John On Fri, Aug 7, 2009 at 3:20 AM, theallan wrote: > > Hello all, > >