Ticket #1311 (closed enhancement: fixed)
$(document).unbind('ready');
| Reported by: | jimmont | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.2.2 |
| Component: | event | Version: | 1.1.2 |
| Keywords: | document ready bind unbind onload | Cc: | |
| Blocking: | Blocked by: |
Description
In a script I initialize functions using the ready event: $(document).ready(function(){ }); $().ready(functionReference);
Is it possible to change the behavior of the ready event to be more like other events (eg click) so that the following will remove the previous functionality (and prevent it from happening)? (In this scenario I see the previous code as loaded from an external script, then a subsequent script does the unbinding and attaches new functionality to the page.)
$().unbind('ready'); $(document).unbind('ready');
This is a followup to the dialog at: http://groups.google.com/group/jquery-en/browse_thread/thread/f01888f1bcd54531?hl=en
thanks very much
Change History
comment:2 Changed 5 years ago by brandon
- Milestone changed from 1.2 to 1.2.2
I've started work on this in the events_enhancement branch.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
