How to remove “Powered by Google Docs” in Google Forms

 

We all know that Google is one of the best search engine which also provides several features like docs, drive, translate, search engine, blogger. If you are an entrepreneur, you can also use google apps for work.

Google docs is one best online collaboration tool on which you can create documents, file and you can also create form for free. I have already published an article on ‘How to create an advanced google form’. Click here to read.

How To Get Rid From “Powered by Google Docs” ?

1. The very first thing you need to do is that create a google form.

2. Then get the embed code which something like below

<form action="https://docs.google.com/spreadsheet/formResponse?formkey=YOURFORMKEY&ifq" method="POST" id="ss-form">’

3. Now you need to modify/replace the above code with the below code.

<!-- Form code starts here -->
<!-- Start copying -->
<form action="https://docs.google.com/spreadsheet/formResponse?formkey=YOURFORMKEY&ifq" method="POST" id="ss-form">
<!-- Form code -->
<!-- Continue copying -->
<input type="submit" name="submit" value="Submit"></div></div></form>
<script type="text/javascript">
(function() {
var divs = document.getElementById('ss-form').
getElementsByTagName('div');
var numDivs = divs.length;
for (var j = 0; j < numDivs; j++) {
if (divs[j].className == 'errorbox-bad') {
divs[j].lastChild.firstChild.lastChild.focus();
return;
}
}
for (var i = 0; i < numDivs; i++) {
var div = divs[i];
if (div.className == 'ss-form-entry' &&
div.firstChild &&
div.firstChild.className == 'ss-q-title') {
div.lastChild.focus();
return;
}
}
})();
</script></div>
<!-- Form code ends here -->
<!-- Copy till the </div> tag -->

4. And now, you can embed the above code in your website and blogger blog without any issue.

That’s it.

I hope that the above step by step guide has helped you to get rid from ‘powered by google docs’

Source