Created
November 27, 2013 09:13
-
-
Save jlcampana/7672849 to your computer and use it in GitHub Desktop.
Elementos + jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#boton_eliminar_todas').attr('disabled',false); | |
$("#activity_indicator").hide(); | |
$('#boton_nuevo_ikea_family').show(); | |
//En formularios, mejor poner readonly en lugar de disabled! | |
$('#phone1').attr('readOnly',true); | |
//Comprobar si está chequeado: | |
if($('#misma_direccion_envio').prop('checked')) | |
{ | |
} | |
//Comprobar visibilidad: | |
if($('#menu_settings').is(":visible")) | |
{ | |
$('#menu_settings').hide(); | |
} | |
else | |
{ | |
$('#menu_settings').show(); | |
} | |
//Cambiar visibilidad | |
if($('#menu_settings').toggle(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment