JSFiddle - React, Tailwind, and code Playground
by Good Muyis
HTML
<div class="close"> Close</div>
<div class="page-title">page-title</div>
<div class="open"> Open</div>
JavaScript
var url = "http://jsfiddle.net/";
//var currentUrl = $(location).attr('href');
var currentUrl = $("*").context.baseURI;
if( currentUrl= url){
$(".page-title").css("display","none");
}
alert(location.href);