Opened 14 years ago
Closed 12 years ago
#4128 closed bug (worksforme)
live function doesn't work on current elements
Reported by: | selimachour | Owned by: | selimachour |
---|---|---|---|
Priority: | undecided | Milestone: | 1.3.2 |
Component: | event | Version: | 1.3.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I've been trying everything to get the current <a class="foo">s to work with the $('a.foo').live('click', bar) with no luck.
The <a class="foo">s loaded via ajax do get the event handler properly attached, but not the current ones.
My work around is
$('a.foo').click(bar).live('click', bar);
is that normal ? Do you need an example ?
Attachments (1)
Change History (7)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Sure, I'll get an example ready for you
In the mean time, I noticed that ...
<a href="xxx" class="foo" custom_attribute="custom_value">zzzz</a>
... did not receive the event either even though it was loaded via ajax. Removing the custom attribute fixed that.
comment:3 Changed 14 years ago by
Hi,
I attached a minimized version of our website.
The website js code is in behaviors.js, all the rest are just misc. plugins.
I left the navigation on the left side and a menu on the right side. They're both made of <a class="js_link_internal">....</a>
$('a.js_link_internal').live(click, jsLinkInternal') should turn both set of links into ajax calls except it does not do it for the navigation links.
It looks like the "$('#A').click(function)" call is the issue...
Any help would be very appreciated.
comment:4 Changed 12 years ago by
Keywords: | needsreview added |
---|---|
Owner: | changed from brandon to selimachour |
Priority: | major → undecided |
Status: | new → pending |
Please provide a reduced jsFiddle test case, thanks!
Additionally, test against the jQuery 0 GIT version to ensure the issue still exists.
comment:5 Changed 12 years ago by
Created a fiddle that I think follows the situation described (except that I just have a link to add more links, not using ajax). The fiddle is located at http://jsfiddle.net/9HRgE/1/. This fiddle does not exhibit the behaviors described. I tested with the 1.3.2 version and it also seems to work fine there, jsfiddle does not however have 1.3.1 so I couldn't test that version.
comment:6 Changed 12 years ago by
Keywords: | needsreview removed |
---|---|
Resolution: | → worksforme |
Status: | pending → closed |
Works in 1.3.2 all the way up to the current version.
Can you provide a test case?