Opened 15 years ago
Closed 15 years ago
#1633 closed bug (worksforme)
Bindings in Ajax content stopped working in 1.2.1
Reported by: | back-2-95 | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | core | Version: | 1.2 |
Keywords: | bind | Cc: | |
Blocked by: | Blocking: |
Description
When I upgraded 1.2 to 1.2.1, all my bind commands in Ajax content stopped working.
For example I have following js-code in Ajax-content:
<script type="text/javascript">
$("ul#tools a").bind (
"click", function() {
openDialog($(this).attr("href"));
return false;
}
);
</script>
$("ul#tools a") seems to find object but it won't bind anything to them.
I normal content bind seems to work. And in 1.2 it works in both normal and Ajax content.
Attachments (1)
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Milestone: | 1.2.1 → 1.2.2 |
---|---|
need: | Review → Test Case |
Resolution: | → worksforme |
Status: | new → closed |
I built a test case based on the description and it works for me. If you have a test case that fails please reopen the ticket and attach it.
Note: See
TracTickets for help on using
tickets.
I couldn't reproduce this bug unless the DOM wasn't ready yet.
Adding $(document).ready() to your code it seemed to work fine.