01-20-2013 02:09 AM - edited 01-21-2013 12:13 AM
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jque
<script type="text/javascript">
$("#searchterm").keyup(function(e){
var q = $("#searchterm").val();
$.getJSON("http://<url>&callback=?",
{
q: q,
format: "jsonp"
},
etc etc
</script>
thanks in advance.
01-21-2013 01:58 AM - edited 01-21-2013 02:14 AM
resolved own issue - had to include the link to jquery in the index.htm file
duh.
<script type="text/javascript" src="js/jquery.min.js"></script>