Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created August 4, 2011 08:52
Show Gist options
  • Save kopiro/1124755 to your computer and use it in GitHub Desktop.
Save kopiro/1124755 to your computer and use it in GitHub Desktop.
Instant Search Tutorial - script.js
ajax_search = function(query) {
jQuery.get("ajax.php", {q:query}, function(html_resp){
$("#r").html(html_resp);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment