mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
|
jQuery( function() {
|
||
|
var script = document.createElement( "script" );
|
||
|
script.setAttribute( "nonce", "jquery+hardcoded+nonce" );
|
||
|
script.innerHTML = "startIframeTest()";
|
||
|
$( document.head ).append( script );
|
||
|
} );
|