78

Is there a way to obtain the domain name of the current page by using javascript in a browser (IE, FireFox, etc) ?

ErikE
  • 48,881
  • 23
  • 151
  • 196

3 Answers3

141

If you are asking about the machine name of the host that served up the current page, you can find that with

window.location.hostname

If you are asking about the name of the machine that is displaying the page in a browser, that information is restricted by browsers for security purposes.

Mike Clark
  • 11,769
  • 6
  • 39
  • 43
19

You can use document.domain to get domain name.

John
  • 1
  • 13
  • 98
  • 177
Bob
  • 8,392
  • 12
  • 55
  • 96
13

window.location.host

EDIT: If you meant the domain of the client machine, I don't think it is possible.

Chetan S
  • 23,637
  • 2
  • 63
  • 78