Skip to content

Instantly share code, notes, and snippets.

@yetanothernguyen
Last active August 29, 2015 14:05
Show Gist options
  • Save yetanothernguyen/3265cc0ffc5865f6fa71 to your computer and use it in GitHub Desktop.
Save yetanothernguyen/3265cc0ffc5865f6fa71 to your computer and use it in GitHub Desktop.
<iframe id="donation-iframe" data-src="http://unicef.my/donations/confirmed?iframe=true" width="700px" height="700px" seamless="true" border="0" style="margin: 0; padding: 0; border: none"></iframe>
<script type="text/javascript">
window.onload = function() {
var params = window.location.toString().split('?')[1],
iframe = document.getElementById('donation-iframe');
iframe.src = iframe.getAttribute('data-src') + '&' + params;
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment