Archive for January, 2013

4 jQuery Instagram Plugins collection

Instagram is without any doubt is most popular online photo-sharing and social networking service that enables its users to take a picture, apply a digital filter to it, and share it on a variety of social networking services. Instagram is fast, beautiful and fun way to share your photos with friends and family. So In […]
Read the rest of this entry »

Turn off autocomplete for textbox in ASP.Net using jQuery

jQuery code to turn off autocomplete for ASP.NET textbox. $(document).ready(function(){ $("#<%=Textbox.ClientID %>").attr("autocomplete", "off"); }); But there is no need to use jQuery for this as this can be done easily just by setting attribute for ASP.NET textbox. <asp:TextBox runat="server" ID="Textbox" autocomplete="off"/> But jQuery can be useful, if there are many ASP.NET textboxes then jQuery can […]
Read the rest of this entry »

jQuery code to disable double click event

jQuery code to disable double click event on the webpage. $(document).ready(function(){ $("*").dblclick(function(e){ e.preventDefault(); }); }); Above jQuery code will disable double click event for all the controls on the webpage. If you want to disable for specific control, let's say a button with ID "btnSubmit" then, $(document).ready(function(){ $('#btnSubmit').dblclick(function(e){ e.preventDefault(); }); }); Feel free to contact […]
Read the rest of this entry »

Check/uncheck checkboxes in Asp.net GridView using jQuery

Find out jQuery code to check/uncheck or select/deselect all the checkboxes in ASP.NET Gridview. There are already plenty of articles on this topic but then how this is different. Assume, all the checkboxes are checked when header checkbox is checked but then you uncheck one of the child checkbox then what happens to your header […]
Read the rest of this entry »

jQuery and ASP.NET DropDownList

"ASP.NET DropDownList" or "DropDown" or "ComboBox" Or "Select Box" Or "HTML Select Control"..oh!!! One form, many names. Yes, they all are same, just the difference of name. In this post, find list of post related with DropDownList and jQuery. The below list have solution for every common task, problem or issues. So Bookmark it.. You […]
Read the rest of this entry »

Responsive Menu
Add more content here...