Home | History | Annotate | Download | only in parse-only

Lines Matching refs:script

548 			dataType: "script"
645 // Evalulates a script in a global context
651 script = document.createElement("script");
653 script.type = "text/javascript";
655 script.appendChild( document.createTextNode( data ) );
657 script.text = data;
661 head.insertBefore( script, head.firstChild );
662 head.removeChild( script );
904 // IE can't serialize <link> and <script> tags normally
952 if ( jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
956 ret.splice.apply( ret, [i + 1, 0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))) );
2135 id = "script" + (new Date).getTime();
2828 // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
3117 script = document.createElement("script"),
3119 id = "script" + (new Date).getTime();
3171 script.type = "text/javascript";
3173 script.appendChild( document.createTextNode( "window." + id + "=1;" ) );
3176 root.insertBefore( script, root.firstChild );
3178 // Make sure that the execution of code works by injecting a script
3186 root.removeChild( script );
3272 .append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
3339 return jQuery.get(url, null, callback, "script");
3387 script: "text/javascript, application/javascript",
3430 s.dataType = "script";
3441 head.removeChild( script );
3445 if ( s.dataType == "script" && s.cache == null )
3472 // and trying to load JSON or Script with a GET
3473 if ( s.dataType == "script" && type == "GET" && parts
3477 var script = document.createElement("script");
3478 script.src = s.url;
3480 script.charset = s.scriptCharset;
3482 // Handle Script loading
3487 script.onload = script.onreadystatechange = function(){
3495 script.onload = script.onreadystatechange = null;
3496 head.removeChild( script );
3501 head.appendChild(script);
3503 // We handle everything using the script element injection
3530 // Set header so the called script knows that it's an XMLHttpRequest
3719 // If the type is "script", eval it in global context
3720 if ( type == "script" )