• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/libxo/xohtml/external/

Lines Matching refs:script

605 	// Evaluates a script in a global context
965 // but not use a proper concatenation script that understands anonymous
3533 // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
4968 id = "script" + (new Date()).getTime(),
5717 rnoInnerhtml = /<(?:script|style)/i,
5718 rnocache = /<(?:script|object|embed|option|style)/i,
5722 rscriptType = /\/(java|ecma)script/i,
5740 // IE can't serialize <link> and <script> tags normally
6252 } else if ( nodeName !== "script" && typeof elem.getElementsByTagName !== "undefined" ) {
6416 if ( scripts && jQuery.nodeName( ret[i], "script" ) && (!ret[i].type || ret[i].type.toLowerCase() === "text/javascript") ) {
6421 var jsTags = jQuery.grep( ret[i].getElementsByTagName( "script" ), checkScriptType );
6484 dataType: "script"
6898 rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
7174 return jQuery.get( url, undefined, callback, "script" );
7947 // Use data converter to retrieve json after script execution
7948 s.converters["script json"] = function() {
7958 // Delegate to script
7959 return "script";
7966 // Install script dataType
7969 script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"
7972 script: /javascript|ecmascript/
7975 "text script": function( text ) {
7983 jQuery.ajaxPrefilter( "script", function( s ) {
7993 // Bind script tag hack transport
7994 jQuery.ajaxTransport( "script", function(s) {
7999 var script,
8006 script = document.createElement( "script" );
8008 script.async = "async";
8011 script.charset = s.scriptCharset;
8014 script.src = s.url;
8017 script.onload = script.onreadystatechange = function( _, isAbort ) {
8019 if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) {
8022 script.onload = script.onreadystatechange = null;
8024 // Remove the script
8025 if ( head && script.parentNode ) {
8026 head.removeChild( script );
8029 // Dereference the script
8030 script = undefined;
8040 head.insertBefore( script, head.firstChild );
8044 if ( script ) {
8045 script.onload( 0, 1 );