I've used iframe save buttons for weeks and I've recently noticed the save button image is an old one (pin is purple, not green, see https://foursquare.com/button.html).
<!-- html code example -->
<iframe src="https://foursquare.com/button.html?vid=<?php echo $tip['venue_id']; ?>&size=small" allowtransparency="true" frameborder="0" scrolling="no" style="width:50px; height:20px;"></iframe>
Now according to https://foursquare.com/business/brands/offerings/savetofoursquare, I have to use javascript. This solution does not seem to work for save buttons created on the fly (they do not exist at document.ready yet since they are loaded by user's clicks.)
1) Why Foursquare's logo is an old version on https://foursquare.com/button.html?
2) How would I attach the 'Save button' event to elements created after the page load using the Foursquare javascript solution ?
Thanks for any help