Created
June 13, 2012 02:41
-
-
Save anonymous/2921495 to your computer and use it in GitHub Desktop.
CrunchBase API example code
This file contains hidden or 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
| <html> | |
| <head> | |
| <script type='text/javascript' src='http://code.jquery.com/jquery-1.7.2.min.js'></script> | |
| <script type='text/javascript'> | |
| jQuery(document).ready(function($) { | |
| $.getJSON('http://api.crunchbase.com/v/1/company/facebook.js?callback=?', function(data) { | |
| $('h1').text(data.name); | |
| $('#overview').html(data.overview); | |
| }); | |
| }); | |
| </script> | |
| </head> | |
| <body> | |
| <h1>Replace with Profile name here...</h1> | |
| <div id='overview'>Place overview between here...</div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment