JSFiddle - React, Tailwind, and code Playground
by RWhitbeck
HTML
<a href="http://ralphwhitbeck.com:3000/test.php?id=3#hash">test link</a>
JavaScript
$(function() {
var parse = $( "a" ).get( 0 );
console.log( parse.protocol ); // => "http:"
console.log( parse.hostname ); // => "example.com"
console.log( parse.port ); // => "3000"
console.log( parse.pathname ); // => "/pathname/"
console.log( parse.search ); // => "?search=test"
console.log( parse.hash ); // => "#hash"
console.log( parse.host ); // => "example.com:3000"
});