I have a question, Im using jquery, jqueryui and basic ajax.
I would like to use some plugin or easy way to refresh the result of a form without refrehs the page.
For example if I search hotels and I want filter only the 3 starts ones that the result load in the same page without refresh
Thanks!!
This is the slider jquery code:
$(function() {
$( "#slider-range-min" ).slider({
range: "min",
value: 50000,
min: 1,
max: 50000,
slide: function( event, ui ) {
$( "#amount" ).val(ui.value+ " €" );
}
});
$( "#amount" ).val($( "#slider-range-min" ).slider( "value" )+ " €" );
});