Published by Zaheer
photo credit: aussiegall
Continuing with our JavaScript regular expression series today we will discuss JavaScript regular expression to validate U.S phone number. Previously we talked about validating email , Social Security number and zip code using JS regex.
In today’s post I’ll show you how to use JavaScript regular expression to validate U.S [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 28, 2008
Filed under: Javascript
Tags: Javascript, RegEx, Regular Expression
Published by Zaheer
Folks I am very excited to inform you that with all your votes zParacha.com is now in the final of the iBlogCup. 64 blogs participated and now we have two best blogs competing for the cup.
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 26, 2008
Filed under: Blogging
Tags: , iBlogCup
Published by Zaheer
Entrecard is one of the latest blog promotion services that is attracting lot of bloggers. Entrecard is a relatively new blog promotion website but it is different (and better) than other similar websites. You have total control on how to use this service.
I used to have BlogRush widget on my blog but [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 24, 2008
Filed under: Blogging
Published by Zaheer
Continuing with my series of JavaScript regular expression today we will see how easy it is to validate zip code using regular expression in JavaScript. Previously we talked about validating email and Social Security number using JS regex.
In today’s post I’ll show you how to use JavaScript regular expression to validate zip code. Let [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 18, 2008
Filed under: Javascript
Published by Zaheer
When I wrote the JS regular expression article last week I had no idea that it will attract so many visitors. Not only did so many people read this post, many more visited my blog searching for other regular expressions. So I decided to write few more posts about JavaScript regular expressions and how to [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 15, 2008
Filed under: Javascript
Published by Zaheer
Twitter is a wonderful tool to promote your blog. Typically after they publish a new post bloggers logon to their twitter account and inform their followers that they have published an interesting new post.
But there is a better way to promote your post. twitterfeed automatically informs your followers about your new posts. [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 09, 2008
Filed under: Blogging
Published by Zaheer
Last month I wrote about regular expressions in Java, today I’ll show you how to use regular expression in JavaScript to validate email address.
Here is the code to validate email address in JavaScript using regular expression.
function validateEmail(elementValue){ var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/; return emailPattern.test(elementValue); }
Explanation:
The argument to this method is [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 07, 2008
Filed under: Javascript
Published by Zaheer
Today I am announcing a new montly backlink giveaway. Every month I’ll invite bloggers to post a link to one of their favorite posts on their blog. I’ll then compile those links in a post on my blog. It is a win-win situation for all of us. I hope to get more traffic and [...]
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
. Feb 05, 2008
Filed under: Blogging