Created
November 16, 2011 15:27
-
-
Save lbernstein/1370345 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
| <body> | |
| <!-- Create input fields for email and company --> | |
| <p>Email </p> | |
| <input type="text" id="email" name="email" /> | |
| <p>Company </p> | |
| <input type="text" id="company" name="company" /> | |
| <!-- Call Autocomplete, attach input fields and pass callback --> | |
| <script type="text/javascript"> | |
| Demandbase.CompanyAutocomplete.widget({ | |
| company: "company", // attach autocomplete to input field with id = company | |
| email: "email", // attach autocomplete to input field with id = email | |
| key: "<Your_Demandbase_Key>", // add your demandbase key here | |
| callback: myCallback // the callback to call. | |
| }); | |
| </script> | |
| </body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment