All jQuery Codes

How to check textbox is readonly using jQuery

Previously I had posted about "How to make textbox readonly using jQuery". One of way is to make textbox readonly is to set "readonly" attribute to true. So use the same attribute "readonly" to find out whether textbox is readonly or not using jQuery. $(document).ready(function(){ $("#txtReadonly").attr('readonly', true); var isReadonly = $("#txtReadonly").attr('readonly'); alert('txtReadonly is not readonly […]
Read the rest of this entry »

jQuery validation using class “.required” problem – Question from blog reader

Read How to Validate email address using jQuery Well, 5 days back I received an mail from one of my reader, in which he had written that "I need to validation html page using Jquery by looping through Class attributes ["Class=Required"] if the label attribute contain "required" class then i should validate the alert the […]
Read the rest of this entry »

Validate Date using jQuery

I have already posted about "Validate Date format using jQuery" in which explains how to validate the format of date only, not the actual date. I also received one comment from my reader that it is not sufficient to validate only format. So I thought why not writing a post which validates the date as […]
Read the rest of this entry »

jQuery plugin for Uppercase, lowercase, title case and pascal case

In one of my post, I had posted "how to convert text to UpperCase using jQuery". But today, I have created my first jQuery plugin called "Setcase". The beauty of this plugin is that this plugin can be used to convert text to uppercase, lowercase, title case and pascal case. Features It makes use of […]
Read the rest of this entry »

Validate Date format using jQuery

In this post, we will see how can you validate the user's entered input date's format using jQuery. For demo, I have used "mm/dd/yyyy" or "mm-dd-yyyy" format to be considered as valid format. The date format checking is done using regular expression. So first, let's create a function which validate any input value against the […]
Read the rest of this entry »

Change cursor to hand on mouseover in GridView using jQuery

In this post, I will show you how to change the cursor to Hand style cursor when user takes mouse on the rows of ASP.NET GridView so that the user will come to know that it is clickable. Also read my ASP.NET Grid View with jQuery series posts. Below jQuery code will change the mouse […]
Read the rest of this entry »

Responsive Menu
Add more content here...