Skip to content

Vinod Ram Blog

Creative, Informative and Entertaining Stuff for everyone

Vinod Ram Blog

Creative, Informative and Entertaining Stuff for everyone

  • Home
  • Web Stories
  • Get in touch
  • About
    • Home
    • jquery
ajax General HTML javascript jquery web development

Ajax call using jquery

Vinod Ram September 18, 2019 0 Comments

function makeAjaxRequest(data1,data2,.....,datax){ $.ajax({ 'type':'POST', async: false, url: 'http://www.example.com/some_request_url', data:{param1:data1,param2:data2,....,paramx:datax}, success : function(response) { console.log(response); // Using this you can check the posted data in browser console window return true;// you…

HTML javascript jquery web development

Validate date format mm/dd/yyyy by using jquery validation library

Vinod Ram March 8, 2018 0 Comments

First add the custom method to the validation library as below. Can you put this code in your jquery validation file or in your page where you want to validate…

HTML javascript jquery web development

Validate date format mm/dd/yyyy in jquery or javascript

Vinod Ram March 8, 2018 0 Comments

<script type="text/javascript"> function isValideDate(datavalue){ var regexValidDate = /^(?:(0|1)(0||3)(19|20){2})$/; return regexValidDate.test(datavalue); } var dateToCheck = '06/01/2011', if(isValideDate(dateToCheck)){ alert("Given date is valid as per the format of MM/dd/YYYY"); }else{ alert("Given date is…

HTML javascript web development

validate mobile number on keypress using jquery

Vinod Ram August 8, 2015 0 Comments

How to validate and restrict unwanted character for mobile or phone number field using jquery $(document).ready(function () { $(‘#mobile’).keyup(function () { var $th = $(this); $th.val($th.val().replace(//g, function (str) { return…

javascript web development

validate zipcode pincode on keypress using jquery

Vinod Ram August 8, 2015 0 Comments

How to validate and restrict unwanted character for zipcode or pincode field using jquery $(document).ready(function () { $(‘#pincode’).keyup(function () { var $th = $(this); $th.val($th.val().replace(//g, function (str) { return ”;…

javascript jquery web development

validate name on keypress using jquery

Vinod Ram August 8, 2015 0 Comments

How to validate and restrict unwanted character for name field using jquery $(document).ready(function () { $(‘#name’).keyup(function () { var $th = $(this); $th.val($th.val().replace(//g, function (str) { return ”; })); });…

Tags

amazon amazon on strike 2024 Anita Bryant Australia bitcoin content Cricket date date validation David Dobrik Death in Paradise delivery Staff donald trumph form validation France gateway timeout Hollywood htaccess javascript jquery Karate laravel Melbourne Cricket Ground microsoft movie Muay Thai Murielle Hilaire netflix ninja form Notre-Dame fire online Shopping Paris php-fpm Singer squid game Stardom suspense Sydney Sweeney thriller usa politics validation website development wordpress yii2 youtuber

Archives

You Missed

General Knowledge International News

Microsoft Makes OpenAI’s $200/Month AI Free for All Copilot Users

General Knowledge International News

अमेरिका-चीन व्यापार युद्ध बढ़ा: नए टैरिफ और जवाबी उपायों से वैश्विक बाजार में उथल-पुथल

International News

Dick Button The Trailblazer Who Revolutionised Figure Skating

Hollywood International News

Selena Gomez was criticised for posting a tearful video on Instagram

Vinod Ram Blog

Creative, Informative and Entertaining Stuff for everyone

Copyright © All rights reserved | Blogus by Themeansar.

  • Terms and Condition
  • Disclaimer
  • Privacy Policy
  • Get in touch