W3.JS round numbers to decimals from another file and display it w3.js - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

how to round numbers to decimals from another file and display it using w3.js ?


 295

Show Result
file.txt
W3.JS


1

<!DOCTYPE html>
<html>
<title>W3.JS</title>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<body>

<table id="id01">
<tr>
<th>Technologie</th>
<th>Side</th>
<th>Points</th>
</tr>
<tr w3-repeat="Langs">
<td>{{Lang}}</td>
<td>{{Side}}</td>
<td>{{Avg}}</td>
</tr>
</table>


<script>
w3.getHttpObject("/project/macho2/sl_ipSHHs8VdG202111398/file.txt", myFunction);

function myFunction(myObject) {
var i;
var myArray = myObject.Langs;
for (i = 0; i < myArray.length; i++) {
myArray[i]["Avg"] = myArray[i]["Avg"].toFixed(2);
}
w3.displayObject("id01", myObject);
}
</script>

</body>
</html>


By        
The power of the user (%)
10%



The most helpful W3.JS solutions

How to fill a dropdown using w3.js ?How to fill a dropdown using w3.js ?W3.JS

Click to see more ...

  1.1K     147

how to fill a dropdown from another file using w3.js ?how to fill a dropdown from another file using w3.js ?W3.JS

Click to see more ...

  870     144

how to fill a table from another file using w3.js ?how to fill a table from another file using w3.js ?W3.JS

Click to see more ...

  578     71

How to change background color using w3.js ?How to change background color using w3.js ?W3.JS

Click to see more ...

  447     57

get latitude and longitude w3.jsget latitude and longitude w3.jsW3.JS

Click to see more ...

  412     56

how to fill a list from another file using w3.js ?how to fill a list from another file using w3.js ?W3.JS

Click to see more ...

  347     53

how to set background color using w3js ?how to set background color using w3js ?W3.JS

Click to see more ...

  290     49

How to make a slide show using w3.js ?How to make a slide show using w3.js ?W3.JS

Click to see more ...

  280     46

How to display text  in html element using w3.js ?How to display text in html element using w3.js ?W3.JS

Click to see more ...

  234     42

how to round numbers to decimals from another file and display it using w3.js ?how to round numbers to decimals from another file and display it using w3.js ?W3.JS

Click to see more ...

  295     28

Welcome aboard!
We are happy you are here and
wish you good net-raft!