JSFiddle - React, Tailwind, and code Playground

by Dan Shahin

HTML

<script src="https://code.jquery.com/jquery-2.2.0.js"></script>
<<input type="text"/>

JavaScript

(function( $ ) {
 
    $.fn.showLinkLocation = function() {
 
        this.filter( "a" ).append(function() {
            return " (" + this.href + ")";
        });
 
        return this;
 
    };
 
}( jQuery ));