Skip to content

Instantly share code, notes, and snippets.

View user0able's full-sized avatar
🏠
Working from home

Hernán Fontánez user0able

🏠
Working from home
View GitHub Profile
@user0able
user0able / validarRUT.html
Created July 3, 2019 00:28 — forked from gaulatti/validarRUT.html
HTML5 Chilean RUT Validator
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Validador de RUT HTML5</title>
</head>
<body>
<form>
<input type="text" id="rut" name="rut" required oninput="checkRut(this)" placeholder="Ingrese RUT">
<button type="submit">Validar RUT y Enviar Form</button>