Author: SibeeshVenu
-
Get The Current URL in jQuery
In this post we will see how we can get the current URL in jQuery [js] <script> $(document).ready(function ($) { alert(window.location); }); </script> [/js] Here window.location ... -
jQuery no-conflict And Using Different Versions Of JQuery
In this post we will see what is jQuery no-conflict and what is the importance of jQuery no-conflict. We will also learn how can we use ... -
Cannot connect to My Kaspersky portal In Windows 10
In this post we will see the fix you need to give when you get a warning as “Cannot connect to My Kaspersky portal”. Recently I ... -
Change Mail Signature In Windows 10 Mail App
In this post we will see how we can change the default mail signature in windows 10 mail application. As usual we can see this option ... -
Custom Events In Highcharts
In this post we will discuss how we can handle custom events in HighChart . HighChart has already given enough events but sometimes we may need ... -
Microsoft Asp.Net Articles Of The Day Oct-6-2015
Today is a great day for me, So I thought of sharing my happiness with you all. My article got selected as Article of the day ... -
September 2015 Month Winner In C-Sharp Corner
Hi All, I hope you are fine. I have a good news to share with you all. I am in the list of September 2015 month ... -
Find the Second Last Element In JQuery
In this post we will see how we can find the second last element from a collection using JQuery collection. [js] $(‘#columnsList li:nth-last-child(2)’); [/js] Here columnsList ... -
Configure IIS in Windows
In this post we will discuss how we can configure IIS in windows. Here I am using windows 7, but no need to worry, the process ... -
Create Tooltip Without Any Plugins
In this post we will discuss how we can create a tool tip by using JQuery.Here we are not going to use any plugins to create ...