Skip to content

Instantly share code, notes, and snippets.

View seantrane's full-sized avatar

Sean Trane Sciarrone seantrane

View GitHub Profile
@seantrane
seantrane / google-websearch.html
Last active April 21, 2018 13:18
HTML: Google WebSearch
<script src="http://www.google.com/jsapi?key=XXXXXXXXXXXXXXX"></script>
<script type="text/javascript">
google.load('search', '1');
function OnLoad() {
var searchControl = new google.search.SearchControl();
var webSearch = new google.search.WebSearch();
var options = new google.search.SearcherOptions();
var drawOptions = new google.search.DrawOptions();
options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_LINEAR);