All jQuery Codes

Updated ASP.NET GridView Tips and Tricks with jQuery

I have already posted about "ASP.NET GridView Tips and Tricks", But here is the updated list of ASP.NET GridView tips and tricks with jQuery. Formatting ASP.NET GridView using jQuery Highlight row on mouseover in GridView using jQuery How to remove rows from GridView using jQuery Change cursor to hand on mouseover in GridView using jQuery […]
Read the rest of this entry »

How to access particular cell in gridview using jQuery

You might be knowing that GridView is rendered as table > th > tr > td format. Below jQuery code allows to select first cell or td of every row (tr) in GridView. I have used "eq()" selector to select particular cell. Also read GridView Tips and Tricks using jQuery //Code Starts $(document).ready(function() { $("#<%=gdRows.ClientID%> […]
Read the rest of this entry »

How to filter GridView records using jQuery

Yesterday, I got into a situation where I need to filter the rows/records of the ASP.NET GridView on client side. When I say filter, that means depending on some condition just show only those records which satisfies the condition. And I implemented the same using jQuery so thought of sharing with you. Problem: First take […]
Read the rest of this entry »

Show/Hide li tag elements using jQuery

<ol>,<ul> and <li> html tags are very commonly used tags. But have you faced a situation, where depending on any condition, show some li elements and hide rest or vice versa? In this post, I will show you how to show/hide li tag element based on any criteria or condition using jQuery. Problem: Let's consider […]
Read the rest of this entry »

Strip or remove all white spaces using jQuery

jQuery provides a function "trim" which removes the starting and trailing white spaces but the space (/s) within the string are maintained. So if you want to strip or remove all white spaces using jQuery then you can't use trim function. Then what is the solution? Well, You can use regex to find out the […]
Read the rest of this entry »

How to populate ASP.NET DropDownList using jQuery and Ajax

ASP.NET DropdownList is a common control and now days with jQuery and Ajax technologies asynchronous request makes a better user experience. In this post, you will see that how to populate ASP.NET DropDownList using jQuery and Ajax by making an asynchronous request. First, we need to create a WebMethod in your code behind to get […]
Read the rest of this entry »

Responsive Menu
Add more content here...