Created
November 11, 2011 23:04
-
-
Save lbernstein/1359596 to your computer and use it in GitHub Desktop.
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"> | |
| // Define some global variables and initialize to blank strings | |
| var company_name = "", industry = "", revenue_range = ""; | |
| //Define the callback for Demandbase IP API | |
| var demandbase_parse = function(company) { | |
| if(company && company.company_name) { | |
| company_name = company.company_name | |
| industry = company.industry | |
| revenue_range = company.revenue_range | |
| // More company info available if desired... | |
| } | |
| } | |
| </script> | |
| </head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment