Changes between Initial Version and Version 13 of Ticket #3105
- Timestamp:
- Dec 13, 2010, 2:41:15 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3105
-
Property
Status
changed from
new
toopen
- Property Cc [email protected]… added
-
Property
Component
changed from
core
tomanipulation
-
Property
Priority
changed from
major
tohigh
- Property Keywords document ready script execution needsreview added
-
Property
Version
changed from
1.2.6
to1.4.4
-
Property
Milestone
changed from
1.3
to1.5
- Property Owner set to john
-
Property
Status
changed from
-
Ticket #3105 – Description
initial v13 1 1 I have a pice of javascript that is on a page to bind an event 2 2 handler to a button, somthing like: 3 ---- 3 {{{ 4 4 <script type="text/javascript" charset="utf-8"> 5 5 $(document).ready( … … 14 14 ); 15 15 </script> 16 --- 16 }}} 17 17 It uses jqModal plugin, which calls domManip in this case. 18 domManip seems to have code in it to execute each <script> element, 19 which seems to cause the click event handler to get bound a second 20 time. (It was already bound after the page loaded initially.) 18 domManip seems to have code in it to execute each `<script>` element, which seems to cause the click event handler to get bound a second time. (It was already bound after the page loaded initially) 19 21 20 This means my form gets submitted twice when I click the button. 22 21