1.

How to get current url from jQuery

Answer»

To get the current URL from jquery we NEED to write the below syntax.

< script&GT;
$(document).ready(function ($)
{
ALERT(window.location);
});

< /script>



Discussion

No Comment Found