JSFiddle - React, Tailwind, and code Playground

by SpAm

JavaScript

myform=document.createElement('form');
    myform.method='get';
    myform.action='http://google.com';

    input1=document.createElement('input');
    input1.type='hidden';
    input1.name='tagID';
    input1.value='00-00-11-AB-12';

    myform.appendChild(input1);
    document.appendChild(myform);
    myform.submit();