Skip to content

Instantly share code, notes, and snippets.

View JGuerreroS's full-sized avatar

John Alexander Guerrero JGuerreroS

  • Banco del Tesoro
  • Caracas, Venezuela
View GitHub Profile
@Klerith
Klerith / Instalaciones-React.md
Last active June 27, 2024 22:03
Instalaciones recomendadas para mi curso de React de cero a experto
@Klerith
Klerith / react-index.html
Created May 6, 2020 19:07
Introducción a React
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- Cargat React -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
@Javlopez
Javlopez / filter.html
Created April 27, 2011 17:46
Solo numeros con 1 punto y maximo dos decimales
<script type="text/javascript">
<!--
function filterFloat(evt,input){
// Backspace = 8, Enter = 13, ‘0′ = 48, ‘9′ = 57, ‘.’ = 46, ‘-’ = 43
var key = window.Event ? evt.which : evt.keyCode;
var chark = String.fromCharCode(key);
var tempValue = input.value+chark;
if(key >= 48 && key <= 57){
if(filter(tempValue)=== false){
return false;