Ne pas retourner false

This commit is contained in:
Michael RICOIS 2011-12-14 15:34:26 +00:00
parent 54937ac2ca
commit ba076c96f7

View File

@ -4,28 +4,24 @@ $(document).ready(function(){
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;
});
});