aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2012-12-17 18:45:13 -0500
committerRick Waldron <waldron.rick@gmail.com>2012-12-31 13:23:32 -0500
commit3f66e928c816de49e4c79a3375524c2d0c4e56ce (patch)
treebf59c5d3d1a8a7e520f106e203e02ba9c41ebd89 /src/support.js
parentd50c18e61f1e498b21e64fd64f847463959061a1 (diff)
downloadjquery-3f66e928c816de49e4c79a3375524c2d0c4e56ce.tar.gz
jquery-3f66e928c816de49e4c79a3375524c2d0c4e56ce.zip
2.0: Remove getSetAttribute and getSetInput and oldIE attroperties hooks
Diffstat (limited to 'src/support.js')
-rw-r--r--src/support.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/support.js b/src/support.js
index 9d8ed46da..5e3a7f4ba 100644
--- a/src/support.js
+++ b/src/support.js
@@ -80,11 +80,6 @@ jQuery.support = (function() {
support.deleteExpando = false;
}
- // Check if we can trust getAttribute("value")
- input = document.createElement("input");
- input.setAttribute( "value", "" );
- support.input = input.getAttribute( "value" ) === "";
-
// Check if an input maintains its value after becoming a radio
input.value = "t";
input.setAttribute( "type", "radio" );