Skip to content

Instantly share code, notes, and snippets.

@boniattirodrigo
Forked from rscarvalho/file.js
Created September 14, 2015 16:44
Show Gist options
  • Save boniattirodrigo/2ec51b94dd3bce1dcd4d to your computer and use it in GitHub Desktop.
Save boniattirodrigo/2ec51b94dd3bce1dcd4d to your computer and use it in GitHub Desktop.
$("#action-button").click(function() {
// supondo que voce tenha um <input id="pesquisar-nome"/>
var inputValue = $("#pesquisar-nome").val();
$.ajax({
url: "/search_view/?pesquisar-nome=" + encodeURIComponent(inputValue),
type: "get",
success: function(data) {
$('#results').html(data);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment