Opened 16 years ago
Closed 15 years ago
#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: | |
Blocked by: | Blocking: |
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 (3)
comment:1 Changed 16 years ago by
Type: | bug → enhancement |
---|
comment:2 Changed 15 years ago by
Milestone: | 1.2 → 1.2.2 |
---|
comment:3 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
This functionality is now available in 1.2.2+
Although you must use the typical bind syntax in order to use the unbind syntax.
$(document).bind('ready', fn); $(document).unbind('ready', fn);
I've started work on this in the events_enhancement branch.