JSFiddle - React, Tailwind, and code Playground

by hallaji

JavaScript

function getValue(name) {
  var url = "http://localhost:8080/[email protected]&joid=68";
  //var url = window.location;
  var filter = new RegExp( name + "=([^&]+)" );
  return unescape( url.match(filter)[1] );
}

var username = getValue("username");
var joid = getValue("joid");

alert(username);
alert(joid);