2011-12-14 15:14:50 +00:00

41 lines
960 B
JavaScript

$(document).ready(function(){
$('#tabs').delegate('select.criteres', 'change', function(e){
e.preventDefault();
e.stopPropagation();
set($(this).attr('name'), $(this, ':selected').val());
return false;
});
$('#tabs').delegate('input[type=checkbox].criteres', 'click', function(e){
e.preventDefault();
e.stopPropagation();
set($(this).attr('name'), $(this).val());
return false;
});
$('#tabs').delegate('input[type=radio].criteres', 'click', function(e){
e.preventDefault();
e.stopPropagation();
set($(this).attr('name'), $(this).val());
return false;
});
$('#tabs').delegate('input[type=text].criteres', 'blur', function(e){
e.preventDefault();
e.stopPropagation();
set($(this).attr('name'), $(this).val());
return false;
});
});
function set(key, value)
{
$.post('/comptage', { cle:key, valeur:value}, function(data, status) {
$('#count').html(data.count);
$('#insee').html(data.insee);
}, 'json');
}