mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
9 lines
244 B
JavaScript
9 lines
244 B
JavaScript
/* global startIframeTest */
|
|
|
|
jQuery( function() {
|
|
var script = document.createElement( "script" );
|
|
script.setAttribute( "nonce", "jquery+hardcoded+nonce" );
|
|
script.innerHTML = "startIframeTest()";
|
|
$( document.head ).append( script );
|
|
} );
|