Thanks to /u/zpoo32 for reporting several issues in this list!
(Recommended)
Available for Windows, macOS, Linux, Android, ARMs.
SMLoadr is a program for downloading music from streaming music services.
// VALIDACIÓN MAYOR DE EDAD | |
edad = document.fvalida.edad.value | |
edad = validarEntero(edad) | |
document.fvalida.edad.value = edad | |
if (edad == "") { | |
alert("Tiene que introducir su edad.") | |
document.fvalida.edad.focus() | |
return 0; | |
} else { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='UTF-8' /> | |
<title>Lista de Esados de la República Mexicana</title> | |
</head> | |
<body> | |
<h1>Lista de Estados de la República Mexicana</h1> | |
<label>Estado de la República</label> | |
<select name="estado"> |
function trimSvgWhitespace() { | |
// get all SVG objects in the DOM | |
var svgs = document.getElementsByTagName("svg"); | |
// go through each one and add a viewbox that ensures all children are visible | |
for (var i=0, l=svgs.length; i<l; i++) { | |
var svg = svgs[i], | |
box = svg.getBBox(), // <- get the visual boundary required to view all children |
Thanks to /u/zpoo32 for reporting several issues in this list!
(Recommended)
Available for Windows, macOS, Linux, Android, ARMs.
SMLoadr is a program for downloading music from streaming music services.
Lee un archivo json y añade la lista de opciones a un elemento select
Reading json file and append list options into element select
# vscode |
Feel free to use this presentation as a reference.
Open this CodeSandbox and start editing. It will automatically create a fork (that is, a duplicate) for you to work on.
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |