Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(function (){
- $("#v_sindUf").change(function(){ // carregando os combos de cidades apos a escolha de um estado
- if($(this).val() == 0)
- {
- alert('Escolha um estado')
- }
- else
- {
- $("#v_sindCid").load('jqCadSind.php?tipo=a&valor=' + $(this).val());
- }
- });
- $("#botao").click(function(){
- $("#painelX").slideToggle("slow");
- });
- $("#v_sindAt").change(function(){
- alert('ok');
- if ($(this).is(":checked"))
- {
- alert('checado')
- }
- });
- $("#check").on("change",function(){
- if ( $(this).is(":checked")) {
- alert("checado");
- } else {
- alert("não checado");
- }
- })
- });
Advertisement
Add Comment
Please, Sign In to add comment