X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=blobdiff_plain;f=src%2Fmanipulation.js;h=63203ef3b3d1c0b71f518fee1e8f3448586a74f4;hp=24409d2c5c048ce7f4f7c9c9ad770a0a51cce7d4;hb=c9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd;hpb=1a3fd3329dde3c61dc4b2b14792fb9a61b637893 diff --git a/src/manipulation.js b/src/manipulation.js index 24409d2..63203ef 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -417,13 +417,13 @@ function cloneFixAttributes(src, dest) { dest.outerHTML = src.outerHTML; } - // IE6-? fails to persist the checked state of a cloned checkbox + // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button else if ( nodeName === "input" && src.checked ) { dest.defaultChecked = dest.checked = src.checked; } - // IE6-? fails to return the selected option to the default selected + // IE6-8 fails to return the selected option to the default selected // state when cloning options else if ( nodeName === "option" ) { dest.selected = src.defaultSelected;