Created
December 16, 2018 17:46
-
-
Save jcoryalvernaz/ca3a88ef9c90a6625da44242753295bf 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Search Stock</title> | |
<meta charset="utf-8"/> | |
<!--Bootstrap stylesheet--> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> | |
<!--App stylesheet--> | |
<link href="./main.css" rel="stylesheet"/> | |
<!--JQuery Library--> | |
<script src="https://code.jquery.com/jquery-latest.min.js"></script> | |
<!--Bootstrap Library--> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
<!--Typeahead.js Plugin--> | |
<script src="https://cdn.rawgit.com/corejavascript/typeahead.js/master/dist/typeahead.jquery.js"></script> | |
<!--Handlebars.js Plugin--> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.5/handlebars.min.js"></script> | |
<!--App JS--> | |
<script type="text/javascript" src="./main.js"></script> | |
</head> | |
<body> | |
<div class="container p-5"> | |
<form id="form"> | |
<div class="form-group"> | |
<label for="stockSymbol">Stock Symbol</label> | |
<input class="form-control" type="text" id="stockSymbol"/> | |
</div> | |
<button class="btn btn-primary" id="btnSearchSymbol" type="button" onclick="searchStock()"> | |
Get Stock Info ➡ | |
</button> | |
</form> | |
<div id="message" style="margin-top:20px"></div> | |
</div> | |
<table class="table table-striped table-light" id="output"></table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment