How to get Page Title and URL using jQuery
Yesterday for one of my requirement, I need to get the title and URL of the page. This can be easily done with jQuery. In this post, I will show you a jQuery code snippets which will get the URL and Title of the page using jQuery. $(document).ready(function () { var vhref = $(location).attr('href'); var […]