I have a site set up with the Google +1 Plus One button set to appear on all pages. It works fine in Firefox, but the button does not display in IE10. I have the permissions set properly to show the button to anonymous users.
The following two lines of code are present in IE10:
<div class="g-plusone-wrapper" style="margin-top: 0px; margin-right: 1em; margin-bottom: 1em; margin-left: 1em; float: right;">
<g:plusone width="250" annotation="none" href="http://www.website.com/page_title"/>
But nothing other than this.
Any help you can provide in getting the button to display properly would be appreciated.
Comments
Comment #1
corbacho commentedThose 2 lines that you put is the HTML that acts as "placeholder". Then, the JavaScript loaded from Google takes care of rendering that hidden HTML into the actual button.
Open the Devtools of your browser and check the console, maybe there is some error (from other JavaScript code) that is stopping the JavaScript execution.
f the HTML is there, and the googleplusone.js is there too, the module's mission is accomplished. What happens after that is Google's business.
Comment #2
kscheirerDid that solve the issue?