All jQuery With ASP.NET

Things to remember while using jQuery with ASP.NET Master Pages

jQuery is great library but if not used properly then it can make you crazy. If you are using ASP.NET Master Page and planning to use jQuery as well then it is quite important to know few things otherwise your code is not going to work. I have prepared a checklist which you should remember […]
Read the rest of this entry »

How to change jQuery UI Slider value from textbox in ASP.NET

I had recently posted about how to use jQuery slider with ASP.NET which I had also used for my client. But my client came up with one more requirement which is user can either select value from slider or can enter in a textbox. Based on the value entered in textbox, slider value should also […]
Read the rest of this entry »

Implement jQuery UI slider with ASP.NET

jQuery UI provides slider widget which can be used for inputs where range is defined or fixed like we have in various color pickers for RGB. The biggest advantage of slider is that you are not concerned about the validation of the input value as range is fixed and user can't input value beyond the […]
Read the rest of this entry »

Call jQuery from ASP.NET server side

In this post, I will explain you that how can you call jQuery from server side in ASP.Net. Lets place a button on the page and on click of button, server side click event of button will get executed. <asp:Button ID="btnCall" runat="server" Text="Call jQuery From Server" OnClick="btnCall_Click" /> Server side click event of button. protected […]
Read the rest of this entry »

jQuery Datepicker does not work after Ajax Partial Postback

I had already posted number of post related to jQuery UI Datepicker. 1. Implement jQueryUI DatePicker with ASP.NET 2. Show Hand/Pointer cursor on image button with jQueryUI datepicker control 3. Disable Weekends in jQuery UI DatePicker 4. Enable weekends in jQuery UI Datepicker 5. Disable specific days in jQuery Datepicker "jQuery UI Datepicker does not […]
Read the rest of this entry »

Disable specific days in jQuery Datepicker

I had already posted about, 1. Disable Weekends in jQuery DatePicker 2. Enable only weekends in jQuery Datepicker Now, one of my colleague asked me that I want to disable only Monday and Wednesday. How can I? Here is how you can achieve it. In this case, I have disable Monday(1) and Wednesday(3) but as […]
Read the rest of this entry »

Responsive Menu
Add more content here...