UFOman
UFOman

Reputation:

Getting current URL using Jquery

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

Answers (4)

Mukul Keshari
Mukul Keshari

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

ikkebr
ikkebr

Reputation: 801

You should use window.location.pathname or window.location

Upvotes: 5

Mahendra Jella
Mahendra Jella

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

marcgg
marcgg

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

Related Questions