crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

Write down the query to validate Pan Number
Question Posted on 19 Apr 2016Home >> WEB >> JQuery >> Write down the query to validate Pan Number

Below query is the Jquery which help us to validate the pan number wheather it is correct or not



$(document).ready(function{
function ValidatePAN()
{
var panno=$("#txtPan").val();
var regpanno = /^([a-zA-Z]){5}([0-9]){4}([a-zA-Z]){1}?$/;

if(regpanno.test(panno) == false)
{
$("#errormsg").val('pan number is incorrect');
}
else
{
$("#errormsg").val('pan number is correct');
}
}
});
0
0



.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

Difference between body.onload and document.ready in jQuery

Different method which provides effects in JQuery

Three types of selector in JQuery

Example of JQuery focus event on textbox

What is significance of jQuery.NoConflict






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap