Skip to content

Instantly share code, notes, and snippets.

View diegopeixoto's full-sized avatar

Diego Peixoto diegopeixoto

View GitHub Profile
@diegopeixoto
diegopeixoto / README.md
Created May 17, 2023 02:33 — forked from nivethan-me/README.md
Setup a Next.js 13 project with Eslint + Prettier with automatic tailwind class sorting
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@diegopeixoto
diegopeixoto / select-move.html
Last active May 25, 2018 13:29
Mover um item de um multi select para outro (jQuery)
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/core.js"></script>
<script>
$(function () { function moverItens(origem, dest) { // Função onde a origem é preenchida a esquerda e o destino a direita (origem,destino);
$(origem).find(':selected').appendTo(dest);
}
$('#btnCopiaL').click(function () {