Skip to content

Instantly share code, notes, and snippets.

@rscarvalho
Created September 14, 2015 15:59
Show Gist options
  • Save rscarvalho/29daddf365b7cfa8b55f to your computer and use it in GitHub Desktop.
Save rscarvalho/29daddf365b7cfa8b55f 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