Posts by Leonardo Sena • 1 point
4 posts
-
-2
votes2
answers2979
viewsA: Scroll to the bottom of the page automatically
var objDiv = Document.getElementById("div_chat"); var objDiv = document.getElementById("div_chat"); objDiv.scrollTop = objDiv.scrollHeight; objDiv.scrollTop = objDiv.scrollHeight;…
-
-2
votes2
answers1061
viewsA: Scroll from bottom to top
var objDiv = Document.getElementById("div_chat"); var objDiv = document.getElementById("div_chat"); objDiv.scrollTop = objDiv.scrollHeight; objDiv.scrollTop = objDiv.scrollHeight;…
-
-1
votes3
answers997
viewsA: aps.net C# Renaming an image name
insira o código aqui using System.IO; namespace RenomeandoNomesDasFotos { class Program { static void Main(string[] args) { Directory.Move("C:\Imagens\foto.png", "C:\Imagens\fotoRenomeada.png"); } }…
-
-1
votes2
answers13707
viewsA: Mask for CPF or CNPJ without using plugins
CNPJ function with javascript document.getElementById('cnpj').addEventListener('input', function(e) { var x = e.target.value.replace(/\D/g,…