error "Object required" on official jquery 1.11.1.js file

error "Object required" on official jquery 1.11.1.js file

I have copied jquery file from:
http://jquery.com/download/
http://code.jquery.com/jquery-1.11.1.js

I am not able to use, because i am getting the error "Object required" on line 4202. If you check your line number maybe different, because i had to concatenate approx 15 lines because of the error "Unterminated string constant".

If you check http://code.jquery.com/jquery-1.11.1.js
for code
  1. // Make sure textarea (and checkbox) defaultValue is properly cloned // Support: IE6-IE11+ div.innerHTML = ""; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; // #11217 - WebKit loses check when the name is after the checked attribute fragment.appendChild( div ); div.innerHTML = "";
You find textarea and radio button objects.
When i copy code to jquery-1.11.1.js on local computer, instead of these objects there are simple strings:
div.innerHTML = "x";
div.innerHTML = "";

Can anyone send me the working jquery-1.11.1.js file, or explain how to copy object to *.js file?