JSFiddle - React, Tailwind, and code Playground
by yoowordpress
HTML
<div id="tyu">кликай</div>
<div id="tyq">2 000 000 руб.</div>
<div id="typ"></div>
JavaScript
$("#tyu").click(function(){
$a = parseInt($("#tyq").html().replace(/ руб./ig,'').replace(/\s/g,''));
$b=$a*1000;//.replace(/\s/g,'');
$("#typ").html($b);
});
// str_replace(" ","",$str);