Archive for October, 2010

Got something to share about jQuery? Let us know..

Got something about jQuery which you want to share with the world? jQuery Tips ? jQuery Code ? Any thing about jQuery Plugin ? Let us know . We can assure you that we will consider your post. If we do use your post , we shall give you all the credit and also if […]
Read the rest of this entry »

jQuery.support.ajax property in jQuery 1.4.3

Recently, I had posted about that jQuery 1.4.3 release. I had also posted about "jQuery.fx.interval Property Demo" and "jQuery.isWindow" method. Few new Ajax features are also launched with the jQuery 1.4.3. One of them is a new property called "jQuery.support.ajax". This property returns true for browsers which support or capable of handling XMLHttpRequest or Ajax. […]
Read the rest of this entry »

Set Max Length for ASP.NET MultiLine Textbox using jQuery

ASP.NET textbox has a property called "MaxLength", which restrict the end-user from entering characters beyond specified MaxLength. This property works like a charm for ASP.NET textbox but it does not work with ASP.NET MultiLine textbox. In this post, I will show you how we can implement Maxlength property for ASP.NET MultiLine textbox using jQuery. Let's […]
Read the rest of this entry »

Get ASP.NET Dropdown selected value and text using jQuery

In this post, I will show you how can you get the selected value and selected text of ASP.NET Dropdown using jQuery. Let's first declare the dropdown list and a button. <asp:DropDownList ID="ddlLanguage" runat="server"> <asp:ListItem Text="Select" Value="0"></asp:ListItem> <asp:ListItem Text="C#" Value="1"></asp:ListItem> <asp:ListItem Text="VB.NET" Value="2"></asp:ListItem> <asp:ListItem Text="Java" Value="3"></asp:ListItem> <asp:ListItem Text="PHP" Value="4"></asp:ListItem> </asp:DropDownList> <asp:Button ID="btnGetValue" runat="server" Text="Get DropDown […]
Read the rest of this entry »

Enable/Disable all text boxes using jQuery

In my previous post "jQuery code to disable-enable all controls of page", we saw how can we disable all the controls of the page. For my project, we had requirement where we need to disable only the text boxes not all the controls. It was not tough with jQuery. Few minutes of work. See below […]
Read the rest of this entry »

Disable-Enable all controls of page using jQuery

In this post, I will demonstrate a simple jQuery code to disable and enable all the controls of the page. jQuery provides (*) selector, which selects all the element of the page. We will use the * selector to disable and enable all the elements. For demo purpose, we will disable and enable controls on […]
Read the rest of this entry »

Responsive Menu
Add more content here...