Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I've made your code more <a href="http://jsbeautifier.org" rel="nofollow">readable</a>:</p> <pre><code>1 &lt;script type="text/javascript"&gt; 2 (function () { 3 var acc = "acc_230d269_pub"; 4 var st = "nocss"; 5 var or = "h"; 6 var e = document.getElementsByTagName("script")[0]; 7 var d = document.createElement("script"); 8 d.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 9 "engine.influads.com/show/" + or + "/" + st + "/" + acc; 10 d.type = "text/javascript"; 11 d.async = true; 12 d.defer = true; 13 e.parentNode.insertBefore(d, e); 14 })(); 15 &lt;/script&gt; </code></pre> <ul> <li>2,14 An anonymous function wrapper is created, so that variables cannot be access from outside the function ("scope")</li> <li>3 &nbsp; <code>acc</code> looks like the identifier of the advertiser</li> <li>4,5 <code>st = "nocss"</code> and <code>or = "h"</code> looks like settings to adjust the appearance</li> <li>7,10-12 A <code>&lt;script&gt;</code> tag is created. <code>async</code> = Loading the script will not block the execution of the document. <code>defer=true</code> prevents the script from not being executed (can be omitted)</li> <li>6,13 The newly created script tag is inserted before <em>(13)</em> the first script tag in the document <em>(6,13)</em></li> <li>8,9 The URL is constructed:<br />If the current page is transmitted over a secure connection, the injected script will also be transferred over the HTTPS protocol.</li> </ul> <p>The extension of the requested file is omitted. This file could be served using the <code>application/javascript</code> MIME type by server configuration.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload