X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fmanipulation.js;h=7dea3493c2947f305963c9b79fe3ccd2b34f40c8;hb=88d97deb773e6142b7656a4bc4ee973957b6ba49;hp=63203ef3b3d1c0b71f518fee1e8f3448586a74f4;hpb=c9c9057c4d4097767ca181bdb4bb27d6fd2d8fbd;p=jquery.git diff --git a/src/manipulation.js b/src/manipulation.js index 63203ef..7dea349 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -415,17 +415,15 @@ function cloneFixAttributes(src, dest) { // attribute) to identify the type of content to display if ( nodeName === "object" ) { dest.outerHTML = src.outerHTML; - } // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button - else if ( nodeName === "input" && src.checked ) { + } else if ( nodeName === "input" && src.checked ) { dest.defaultChecked = dest.checked = src.checked; - } // IE6-8 fails to return the selected option to the default selected // state when cloning options - else if ( nodeName === "option" ) { + } else if ( nodeName === "option" ) { dest.selected = src.defaultSelected; }