Opened 16 years ago
Closed 16 years ago
#1412 closed bug (invalid)
data argument is not passed in, from trigger
Reported by: | john | Owned by: | brandon |
---|---|---|---|
Priority: | major | Milestone: | 1.1.4 |
Component: | event | Version: | 1.1.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Here's the sample code (happened in FF 2.0.0.5 on OSX):
<script src="dist/jquery.js"></script> <script> $(document).ready(function(){ $("#test").bind("test",function(e){ alert(e.data); }); $("#test").trigger("test",{foo:"bar"}); }); </script> <style> #test { width: 100px; height: 100px; background: red; } </style> <div id="test"></div>
Change History (2)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
trigger takes an array that translates into arguments for the handler.
$(document).ready(function(){ $("#test").bind("test",function(e, data){ alert(data.foo); }); $("#test").trigger("test",[{foo:"bar"}]); });
Note: See
TracTickets for help on using
tickets.
Here's a test case: http://dev.jquery.com/~john/ticket/1412/