Vianne
Vianne

Reputation: 578

Removing plusone.js and widgets.js

It seems like the &lt;!--</body>--&gt; &lt;/body&gt; trick doesn't work anymore. Anyone here knows how to remove those JavaScript files?

Upvotes: 0

Views: 479

Answers (2)

Steelhelmet
Steelhelmet

Reputation: 11

Here is a good way to do it

replace <head> With

&lt;!--<head>--&gt;<b:include name='body'/>&lt;head&gt;

the replace </head><body> with the following

    &lt;!--</head>--&gt;&lt;/head&gt;
&lt;body itemscope=&#39;itemscope&#39; itemtype=&#39;http://schema.org/WebPage&#39;&gt;

at last replace </body> with

&lt;/body&gt;

this will remove all the default styling and js and quote them above the head it`s much better than

`<!--</body>-->`

Upvotes: 1

user6144987
user6144987

Reputation:

It still works. you can be sure that by pressing CTRL+U then scroll bottom and make sure the JavaScript code between the comment <!-- </body>-->

Upvotes: 0

Related Questions