Skip to content

Instantly share code, notes, and snippets.

@imajes
Created July 20, 2010 19:00
Show Gist options
  • Save imajes/483385 to your computer and use it in GitHub Desktop.
Save imajes/483385 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('.search').live('change', function() {
var txt = $(this).text();
$.getJSON('/sheet_musics/search/' + txt),
function(data) {
$('#result').html(data.result);
}
);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment