Code Master - A reference guide for programmer's

Programming is fun and interesting. As you all know, sometime we programmers stucks in the middle way of coding without getting a solution. Blogs like this will help us to find a path to solve our problems. The contents of this blog are the solutions that I found by myself and from other sources. Sharing such solutions is also interesting. Thank you!

Showing posts with label jQuery. Show all posts
Showing posts with label jQuery. Show all posts
Sunday, March 27, 2022

Validate dd/mm/yyyy on input keyup jQuery

›
 Format: dd/mm/yyyy $(document).on("keyup", ".input-date-only", function () { var inputVal = $(this).val(); le...
Wednesday, April 11, 2018

Uncaught typeerror: cannot read property 'msie' of undefined | Solution

›
Solution 1 Downloaded jquery-migrate.1.2.1.js and referenced that file in the error page Solution 2 Copy the code below to the pag...
Wednesday, July 19, 2017

Prevent default form action and do another one

›
Some time we need to perform an action rather than default form action. For this use the script given below. $('#YourformID').on(...
Wednesday, June 7, 2017

Function for validating email format using jQuery

›
function ValidateEmail(emaliID) { var r = new RegExp("[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|...

Function for validate dd/MM/yyyy date using jQuery

›
function VaidateDate(dateValue) { var dateRegex = new RegExp(/^(?=\d)(?:(?:31(?!.(?:0?[2469]|11))|(?:30|29)(?!.0?2)|29(?=.0?2....
›
Home
View web version
Powered by Blogger.