Side navigation
#1633 closed bug (worksforme)
Opened September 17, 2007 06:06AM UTC
Closed December 04, 2007 05:01AM UTC
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 (2)
Changed September 27, 2007 09:04PM UTC by comment:1
Changed December 04, 2007 05:01AM UTC by comment:2
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.
I couldn't reproduce this bug unless the DOM wasn't ready yet.
Adding $(document).ready() to your code it seemed to work fine.