Reputation:
I am very new in javascript and jquery.
$.getJSON("idcheck.php?callback=?", { url: /*i want full url to be print*/ }, function(json){
//alert(json.message);
});
How do i get current full url on page on after url: in above?
Thank you
Upvotes: 15
Views: 47532
Reputation: 505
You can use this:
var path = window.location.pathname; // path only
var url = window.location.href; // full URL
Edit:
$.getJSON("idcheck.php?callback=?", { url: window.location.href }, function(json){ alert(json.message);});
Upvotes: 4
Reputation: 5596
To get current page URL via Jquery and Javascript
$(document).ready(function() {
//jquery
$(location).attr('href');
//pure javascript
var pathname = window.location.pathname;
// to show it in an alert window
alert(window.location);
});
$.getJSON("idcheck.php?callback=?", { url:$(location).attr('href')}, function(json){
//alert(json.message);
});
Upvotes: 3
Reputation: 66436
This will give you the current url:
window.location.pathname
edit:
$.getJSON("idcheck.php?callback=?", { url: window.location.pathname }, function(json){
//alert(json.message);
});
edit 2: Using PHP (found via)
<?php
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>
$.getJSON("idcheck.php?callback=?", { url: "<?php echo curPageURL(); ?>" }, function(json){
//alert(json.message);
});
Upvotes: 21