Skip to content

Instantly share code, notes, and snippets.

@mcknightg
Created December 25, 2015 07:23
Show Gist options
  • Save mcknightg/7a750bc99fa8e61d7494 to your computer and use it in GitHub Desktop.
Save mcknightg/7a750bc99fa8e61d7494 to your computer and use it in GitHub Desktop.
Loading and using external js
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="/typeahead.js"></script>
</head>
Template.yourtemplate.onRendered({
$('#typeahead').typeahead({
name: 'users',
local: usernames
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment