Introduction:
In my previous article I have explained about how to run google apps script function periodically javascript. In this article I am going to explain about How to get current url in jquery,Javascript and C#.Net.
Explanation:
Get current url using jQuery
In javascript
In C#.net
In my previous article I have explained about how to run google apps script function periodically javascript. In this article I am going to explain about How to get current url in jquery,Javascript and C#.Net.
Explanation:
Get current url using jQuery
var
currenturl = $(location).attr('href');
var
currenturl = window.location.href;
string url =
HttpContext.Current.Request.Url.AbsoluteUri;
Comments
Post a Comment