Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Domain name from URL using jquery..?

Tags:

jquery

I have domain name for eq.

1) http://www.abc.com/search  2) http://go.abc.com/work 

I get only domain name from the above URL

Output like

1) http://www.abc.com/ 2) http://go.abc.com/ 

how can I do?

like image 422
Abhishek B. Avatar asked Jan 27 '11 11:01

Abhishek B.


People also ask

How do I find the domain of a string?

Firstly, we'd need to extract the host from the given URL value. We can use the URI class: String urlString = "https://www.baeldung.com/java-tutorial"; URI uri = new URI(urlString); String host = uri. getHost();

How do I get the current domain in HTML?

window.location.href returns the href (URL) of the current page. window.location.hostname returns the domain name of the web host. window.location.pathname returns the path and filename of the current page.

How do I get a domain name in react?

To access the domain name from an above URL, we can use the window. location object that contains a hostname property which is holding the domain name. Similarly, we can also use the document. domain property to access it.


2 Answers

In a browser

You can leverage the browser's URL parser using an <a> element:

var hostname = $('<a>').prop('href', url).prop('hostname'); 

or without jQuery:

var a = document.createElement('a'); a.href = url; var hostname = a.hostname; 

(This trick is particularly useful for resolving paths relative to the current page.)

Outside of a browser (and probably more efficiently):

Use the following function:

function get_hostname(url) {     var m = url.match(/^http:\/\/[^/]+/);     return m ? m[0] : null; } 

Use it like this:

get_hostname("http://example.com/path"); 

This will return http://example.com/ as in your example output.

Hostname of the current page

If you are only trying the get the hostname of the current page, use document.location.hostname.

like image 81
Arnaud Le Blanc Avatar answered Sep 27 '22 21:09

Arnaud Le Blanc


This worked for me.

http://tech-blog.maddyzone.com/javascript/get-current-url-javascript-jquery

$(location).attr('host');                        www.test.com:8082 $(location).attr('hostname');                    www.test.com $(location).attr('port');                        8082 $(location).attr('protocol');                    http: $(location).attr('pathname');                    index.php $(location).attr('href');                        http://www.test.com:8082/index.php#tab2 $(location).attr('hash');                       #tab2 $(location).attr('search');                     ?foo=123 
like image 27
Adam Mendoza Avatar answered Sep 27 '22 20:09

Adam Mendoza