Last active
August 29, 2015 14:07
-
-
Save pdaire/512af877a7011d83dd5a to your computer and use it in GitHub Desktop.
ecursos quin te financia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(document).ready(function(){ | |
var url_consulta = 'https://api.change.org/v1/petitions/2088289/signatures?api_key=45b120d2dc652102bc772b8bc1e62ec16b765576b35210e38b298201be49a4bb'; | |
$.getJSON( url_consulta + '&callback=?', function(data) { | |
// do my stuff | |
$('.nro-peticiones').html('Llevamos ' + data.signature_count + ' firmas'); | |
}); | |
}) | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type='text/javascript' src='https://public.tableausoftware.com/javascripts/api/viz_v1.js'></script><div class='tableauPlaceholder' style='width: 904px; height: 800px;'><noscript><a href='#'><img alt='Combinado Senado ' src='https://public.tableausoftware.com/static/images/H7/H79ZZC6WG/1_rss.png' style='border: none' /></a></noscript><object class='tableauViz' width='904' height='869' style='display:none;'><param name='host_url' value='https%3A%2F%2Fpublic.tableausoftware.com%2F' /> <param name='path' value='shared/H79ZZC6WG' /> <param name='toolbar' value='yes' /><param name='static_image' value='https://public.tableausoftware.com/static/images/H7/H79ZZC6WG/1.png' /> <param name='animate_transition' value='yes' /><param name='display_static_image' value='yes' /><param name='display_spinner' value='yes' /><param name='display_overlay' value='yes' /><param name='display_count' value='yes' /><param name='showVizHome' value='no' /><param name='showTabs' value='y' /></object></div><div style='width:904px;height:22px;padding:0px 10px 0px 0px;color:black;font:normal 8pt verdana,helvetica,arial,sans-serif;'><div style='float:right; padding-right:8px;'><a href='http://www.tableausoftware.com/public/about-tableau-products?ref=https://public.tableausoftware.com/shared/H79ZZC6WG' target='_blank'>Learn About Tableau</a></div></div> | |
<div class='nro-peticiones'></div> | |
<div class='lista-firmas'></div> | |
<script> | |
$(document).ready(function(){ | |
var url_consulta = 'https://api.change.org/v1/petitions/2088289/signatures?api_key=45b120d2dc652102bc772b8bc1e62ec16b765576b35210e38b298201be49a4bb'; | |
$.getJSON( url_consulta + '&callback=?', function(data) { | |
// do my stuff | |
$('.nro-peticiones').html('Llevamos ' + data.signature_count + ' firmas'); | |
$('.lista-firmas').html('ya nos apoyan ' + data.signatures + ' firmas'); | |
}); | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment