Javascript

Real Estate Website using AngularJS

Submitted by jaronavales on
Getting Started with AngularJS AngularJS is an awesome framework for building single page web applications, and it's definitely among the most popular out there. When I started learning Angular, I felt lost for quite a while, and I couldn't quite wrap my head around it at first. This app you can see the real estate website and it's property listing page. Through this, you can Edit, Delete and Add

Disable Textbox in 3 Failure Login Attempts in Javascript

Submitted by Jeprox on
In this tutorial we are going to learn how to disable text box in 3 failure login attempts. The user is only given 3 chances to enter the correct username and password. Username: test Password: test You can modify the username and password inside the script. Username: Password:

Simple Scientific Calculator using javascript

Submitted by Jeprox on
In this project we are going to learn how to create a simple scientific calculator using javascript. Here's the script for scientific calculator. Javascript Code: CSS Code: form{ width:440px; padding:25px; margin:auto; border:5px solid #aaa; border-radius:15px 15px; } input{ background:#888; color:#fff; font-size:15px; padding-top:15px; padding-bottom:15px; padding-left:19px; padding-right:19px

Characters Restriction using javascript

Submitted by Jeprox on
In this project we are going to learn on how to disable characters in input field using javascript. The only allowed characters in this project are "01234567890.". If you want to enable or change some characters find this code // var validList = "0123456789."; for character restriction. Input Characters Restriction Characters Restriction Allowed Characters: "0123456789." Hope you find this useful.