Changes between Initial Version and Version 2 of Ticket #9163
- Timestamp:
- Jul 23, 2012, 11:11:02 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9163 – Description
initial v2 1 1 I am trying to attach the change , focus and blur events to my CKEditor instances that are dynamically generated.Find below the code. Its working fine for Ie9 and other browsers but not getting the instances in IE8 and below IE versions. Here is the code. 2 {{{ 2 3 <script type="text/javascript"> 3 4 if (window.addEventListener) { … … 11 12 } 12 13 </script> 13 14 }}} 14 15 and the function is : 16 {{{ 15 17 function onpageload(e) { 16 18 var dirtyField = document.getElementById("dirtyfield"); … … 25 27 } 26 28 } 27 29 }}} 28 30 29 31 Unable to get the instances in IE8 so the code in not able to loop and attach the events with the instances.