JSFiddle - React, Tailwind, and code Playground
JavaScript
//List of orders
//find all chacked
$("#list input:checked");
//find all url to orders
$("#list .order_name.cell a")
.map(function (i, a) {
return a.href;
});
//request order html page through ajax
$.get( "http://aromo.in.ua/simpla/index.php?module=OrderAdmin&status=1&id=4410&return=%2Fsimpla%2Findex.php%3Fmodule%3DOrdersAdmin%26status%3D1", function( data ) {
order = $(data); //particular order from other page
});
//find order id
order.find("#middle h1").text();