JS (JQuery):
$(document).ready(function() {
$(location).attr('href');
});
JS (standard):
function CurrentURL() {
var currenturl = window.location.pathname;
return currenturl;
}
JS (JQuery):
$(document).ready(function() {
$(location).attr('href');
});
JS (standard):
function CurrentURL() {
var currenturl = window.location.pathname;
return currenturl;
}
Published by
Leave a comment