Author: Hardeep Singh

How To Get Short Date String In Jquery

Hello world, in this article, I am gonna show you,  How To Get Short Date String In Jquery In this post, I am gonna show you how we can get complete date without concatenating  Date.getYear(),  Date.getMonth(), and Date.getDay() each time. So I will create an extension method in jquery that will return complete date(How simple :)) …

Validate Each Input Type Field For Null Values

During work, my requirement was to Validate Each Input Type Field For Null Values but I also don’t wanted to call one function for each input type field like document.ready(function () { $('#input1').on('onchange', functionName); $('#input2').on('onchange', functionName); $('#input3').on('onchange', functionName); }); Any my another requirement was that I need all input type fields except hidden fields, so in order to …

Updates Not Being Reflected in Azure Website

In this article I will demonstrate that how we can fix issue of  “Updates Not Being Reflected in Azure Website” Sometimes things are not in our hand and this frustrate us. So the main question is why its happening?  Why Updates Not Being Reflected in Azure Website? Well I also don’t know exactly why changes not being reflected on …

Location.href not working

The command document.location.href=”www.google.com” is not working in google chrome browser. So your question would be Why Location.href not working? Well its depends how you’re trying to use location.href. Sometimes, we put button inside the form element with action property empty or with ‘javascript:;’ (please take a look)  in order to redirect user one page to another. So in this case …

Prevent JQuery Ajax Request from Caching In IE

In this article I will explain how we can Prevent JQuery Ajax Request from Caching In IE(Internet Explorer). You may noticed that only Internet Explorer by default caches the AJAX request, no other browser, by default, caches AJAX requests… but Internet explorer does and when you make second AJAX request with same parameters what internet explorer does instead creating another …

Databound Function in KendoDropdownList

In this article, I am going show you how we can call any javascript’s function after ajax request in Kendo DropdownList or we can say databound functionality in Kendo DropdownList. Kendo DropdownList tool provides very beautiful look and effects and there are many different ways of binding options are available like you can bind data with ajax …