Skip to content

JQUERY

JavaScript Auto-filling one field same as other

  • by

Often when creating a form on a web page, you need your customers to fill out a field such as a mailing address, as well as a billing address. Instead of having your customers fill out the form twice, you can use JavaScript to copy the form’s data from one field to another.

You might have noticed that sometimes websites like e-commerce or some government website have two address fields in their forms.One for primary address and another for secondary address(or one for billing address and another for shipping address etc).
Read More »JavaScript Auto-filling one field same as other

JqueryLinkColor

How to Create a Jquery Plugin

  • by

This post is explains how easy you can built a jQuery plugin, we made a simple plugin called LinkColor. It makes your website anchor links so colourful and pretty beautiful, Just few line of code and very simple to use. Follow the eight steps and learn how to create your own jquery plugin.
JqueryLinkColor

 Read More »How to Create a Jquery Plugin

Regular Expression

How to write Regular Expressions?

  • by

Understanding Regular Expression

Regular ExpressionRegular expression is the most important part in form validations and it is widely used for search, replace and web crawling systems. If you want to write a selector engine (used to find elements in a DOM), it should be possible with Regular Expressions. In this post we explained few tips that how to understand and write the Regular Expression in simple way.

Will discuss about basic regular expression in three stages.

Read More »How to write Regular Expressions?