Reputation: 578
It seems like the <!--</body>--> </body>
trick doesn't work anymore. Anyone here knows how to remove those JavaScript files?
Upvotes: 0
Views: 479
Reputation: 11
Here is a good way to do it
replace <head>
With
<!--<head>--><b:include name='body'/><head>
the replace </head><body>
with the following
<!--</head>--></head>
<body itemscope='itemscope' itemtype='http://schema.org/WebPage'>
at last replace </body>
with
</body>
this will remove all the default styling and js and quote them above the head it`s much better than
`<!--</body>-->`
Upvotes: 1
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