zParacha.com is in iBlogCup final!
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.
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.
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 I did […]
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 […]
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 […]
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. How cool […]
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 the email […]
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 you […]
A HTML form is a very good channel that you can offer to your visitors to contact you. An aesthetically appealing form encourages user to fill and submit it. It is equally important to make the form as user friendly as possible. Today I’ll share a small JavaScript function that will set the focus on […]
Last week DailyBlogTips invited bloggers to write turtorials as part of DBT’s blog writing contest. I submitted my tutorial about Google Custom Search for blogs. In all, 71 excellend tutorials covering wide-ranging topics from blogging, montezing to health were submitted. This contest not only provided an opportunity for many bloggers to present their posts to […]