Quick Search!

Here's the most basic usage of this API, which will create a search form on your page and allow your users to search grubhogs! local while being on your site.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Local Search Powered by Grubhogs</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css" media="all"/>
<script type="text/javascript" src="http://grubhogs.com/widget/search.js"></script>
</head>
<body>
<div id="GrubhogsSearchForm"> </div>
<div id="GrubhogsSearchResults"></div>
<script type="text/javascript" language="javascript">
window.onload = function () {localSearch('Quick','Key',document.domain)};
</script>
</body>
</html>