Changes between Initial Version and Version 4 of Ticket #390
- Timestamp:
- Dec 31, 2006, 9:38:19 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #390
-
Property
Version
changed from
1.0
to1.1
-
Property
Component
changed from
ajax
toevent
-
Property
Milestone
changed from
to
1.1
-
Property
Version
changed from
-
Ticket #390 – Description
initial v4 1 1 Try: 2 3 {{{ 2 4 var d= document.createElement( "iframe"); 3 5 $(d).load( function(){alert("ok");}); 4 6 d.src=""; 5 7 document.body.appendChild(d); 8 }}} 6 9 7 10 $(d).bind(...) dosen't work too. 11 8 12 but standard d.attachEvent("onload",...) works fine.