I was wondering if it's possible to have multiple log in buttons for Google Friend Connect...
google.friendconnect.renderSignInButton({id:"google-login",style:'long'})
That code renders the log in button. Unfortunately it accepts an id, and id's have to be unique.
Is there any way to do something similar to
google.friendconnect.renderSignInButton({class:"google-login",style:'long'})
that would make all the divs with class="google-login" render as a log in button? Or even just to render two separate log in buttons:
google.friendconnect.renderSignInButton({id:"google-login1",style:'long'})
google.friendconnect.renderSignInButton({id:"google-login2",style:'long'})
Anyone know of a solution?