Skip to content

Commit

Permalink
Removed the objectAll check from jQuery.support, was causing problems…
Browse files Browse the repository at this point in the history
… with broken ActiveX controls. Fixes bug #4017.
  • Loading branch information
jeresig committed Feb 28, 2009
1 parent f1f5cd9 commit 6914fc2
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/support.js
Expand Up @@ -8,7 +8,7 @@
id = "script" + (new Date).getTime();

div.style.display = "none";
div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';
div.innerHTML = ' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select>';

var all = div.getElementsByTagName("*"),
a = div.getElementsByTagName("a")[0];
Expand All @@ -26,11 +26,6 @@
// IE will insert them into empty tables
tbody: !div.getElementsByTagName("tbody").length,

// Make sure that you can get all elements in an <object> element
// IE 7 always returns no results
objectAll: !!div.getElementsByTagName("object")[0]
.getElementsByTagName("*").length,

// Make sure that link elements get serialized correctly by innerHTML
// This requires a wrapper element in IE
htmlSerialize: !!div.getElementsByTagName("link").length,
Expand Down

0 comments on commit 6914fc2

Please sign in to comment.