Category Archives: JQuery

jQuery definir display block ou none na DIV

Para alterar a exibição da DIV que está como display: none para display block utilizando jQuery utilize: Para remover o block e esconder a DIV utilize e é só!

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> | Leave a comment

Foreach em CheckBox com JQuery

De maneira rápida é possível fazer um foreach em todos os checkbox da página Dessa forma você pode acessar todas as propriedades do input utilizando, exemplo: Até a próxima

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , | Leave a comment

Criar dropdown com jQuery (select option)

De forma simples e rápida é possível criar um input select utilizando o jQuery. Pode ser feito da seguinte maneira… Até a próxima! Para aprender um pouco mais sobre jQuery recomendo o curso

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> | Leave a comment

Upload de Multiplos Arquivos HTML e jQuery

Informação básica de como fazer upload de vários arquivos utilizando de forma rápida o HTML e jQuery Script É só isso! Obrigado e até mais!

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , | Leave a comment

jQuery Obter elemento ou valor pelo data-id

Como obter um elemento pelo data-id ou outra propriedade através do jQuery? Digamos que tenha um input e queira obter o seu valor pelo data-item-id. Neste caso você irá obter fazendo… Caso queira tratar o elemento completo remova o .val() e atribua a uma variável, ficaria: Até a próxima!

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , | Leave a comment

Converter input em Label

Como converter um campo input em um label? Suponhamos que necessitamos ter uma mesma tela para edição/inclusão e queremos deixar essa tela também para visualização sem os inputs readonly. Podemos através do jQuery alterar nossos inputs para campo label com o trecho abaixo:   Aprenda mais sobre javascript do básico ao avançado utilizando algum curso, […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , , | Leave a comment

Abrir Modal BootStrap JQuery

[html] $(‘#myModal’).modal(‘toggle’); $(‘#myModal’).modal(‘show’); $(‘#myModal’).modal(‘hide’); [/html]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JQuery | Leave a comment

Validar CNPJ via JavaScript

Método rápido de validação de CNPJ através do JavaScript. [html]function isCNPJValid(cnpj) { cnpj = cnpj.replace(/[^\d]+/g, ”); if (cnpj == ”) return false; if (cnpj.length != 14) return false; // Elimina CNPJs invalidos conhecidos if (cnpj == “00000000000000” || cnpj == “11111111111111” || cnpj == “22222222222222” || cnpj == “33333333333333” || cnpj == “44444444444444” || cnpj […]

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | Leave a comment

Encontrar CEP – Consulta CEP Gratuito

Um bom site para consulta de cep gratuitamente via JQuery.

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery, PHP | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , | 2 Comments

Alterar Input File por Imagem

O css e html abaixo alteram o padrão do input file para uma imagem. css [css] .image-upload > input { display: none; } [/css] HTML [html] [/html] Resultado Simples assim…

<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript, JQuery | <span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> , , | Leave a comment