This page (http://buttonspace.com) is using the Google +1 button at the top.
Documentation: https://developers.google.com/+/web/+1button/
It was working fine until about 2 months ago, when I'm assuming Google updated the code for their button.
Any ideas why this jQuery click() code isn't firing?
<script>
$("#g-plusone").click(function(){
console.log("Clicked!");
alert("Clicked!");
});
</script>
It seems you have the selector wrong. I'm seeing it as
.google-plus-one
on a LI element. Or, there's also a DIV inside it with ID#___plusone_0
, maybe that's what you're looking for.Try it like this:
Though then you'd be attaching the event to the LI (or DIV) containing the Iframe with the button, not the button itself. And you won't be able to get to the button inside the Iframe because of the Same Origin Policy.