Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

solo letras js

?
1
2
3
4
5
//Función que permite solo Números
function ValidaSoloNumeros() {
 if ((event.keyCode < 48) || (event.keyCode > 57)) 
  event.returnValue = false;
}
Comment

solo letras js

?
1
2
3
4
function txNombres() {
 if ((event.keyCode != 32) && (event.keyCode < 65) || (event.keyCode > 90) && (event.keyCode < 97) || (event.keyCode > 122))
  event.returnValue = false;
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: get react form input using ref react 18 
Javascript :: re-resizable react example 
Javascript :: Last digit of a large number 
Javascript :: how to add element in array in angular 
Javascript :: weakset use cases javaScript 
Javascript :: send data to another page javascript 
Javascript :: react with two components render empty 
Javascript :: _.extend() underscore 
Javascript :: react button on child Content Data initialize 
Javascript :: converting jsObject to JSON 
Javascript :: class parent and class child 
Javascript :: react with routing parameter and active NavLink 
Javascript :: react axios request data objest from online json with table element 
Javascript :: javascript get css property 
Javascript :: loading local csv file using d3.csv 
Javascript :: react form validation with logic boolean, string and number 
Javascript :: Scale to fit 
Javascript :: broken image 
Javascript :: regex mobile 
Javascript :: fetching coordinates from db to map 
Javascript :: save for wanver dev 
Javascript :: js function call itself 
Javascript :: remove element 
Javascript :: canvas squashed video javascript 
Javascript :: Ajax in wordpredss 
Javascript :: TypeError: Invalid schema configuration: `True` is not a valid type at path `id.required`. See https://bit.ly/mongoose-schematypes for a list of valid schema types.] 
Javascript :: extract image in p5.js 
Javascript :: sample asynchronous 
Javascript :: json format in .net core 
Javascript :: how do i set CORS policy for nodejs sever 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =