Ne pas retourner false
This commit is contained in:
parent
54937ac2ca
commit
ba076c96f7
@ -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;
|
||||
});
|
||||
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user