Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
113
rated 0 times [  119] [ 6]  / answers: 1 / hits: 16566  / 13 Years ago, sat, october 29, 2011, 12:00:00

From the jQuery 1.7rc1 source:



noData: {
embed: true,
// Ban all objects except for Flash (which handle expandos)
object: clsid:D27CDB6E-AE6D-11cf-96B8-444553540000,
applet: true
},


What is clsid:D27CDB6E-AE6D-11cf-96B8-444553540000?


More From » jquery

 Answers
65

Whenever an object is not a Shockwave flash object, setting expando properties won't work (expando property), as uncatchable errors will be thrown. From a glance at the source, this method is interna



From the source:



// The following elements throw uncatchable exceptions if you
// attempt to add expando properties to them.
noData: {
embed: true,
// Ban all objects except for Flash (which handle expandos)
object: clsid:D27CDB6E-AE6D-11cf-96B8-444553540000,
applet: true
},


Search in the source for noData, and many references with appropriate comments appear.


[#89379] Friday, October 28, 2011, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
benitoh

Total Points: 150
Total Questions: 113
Total Answers: 104

Location: India
Member since Wed, Aug 26, 2020
4 Years ago
benitoh questions
Sun, Mar 21, 21, 00:00, 3 Years ago
Mon, May 13, 19, 00:00, 5 Years ago
;