Skip to content

Instantly share code, notes, and snippets.

@tranc99
Created June 26, 2018 15:29
Show Gist options
  • Select an option

  • Save tranc99/35739e5a7d33db75fdb34d16bb483e09 to your computer and use it in GitHub Desktop.

Select an option

Save tranc99/35739e5a7d33db75fdb34d16bb483e09 to your computer and use it in GitHub Desktop.
click code
```JAVASCRIPT
// click.js
$(document).ready(function() {
return $("#auth-btn").click(function() {
var signin;
signin = $("#form-template").html();
return $("#learn-lib").append(signin);
});
});
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment